]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/force-warn/force-allowed-by-default-lint.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / lint / force-warn / force-allowed-by-default-lint.rs
1 // compile-flags: --force-warns elided_lifetimes_in_paths -Zunstable-options
2 // check-pass
3
4 struct Foo<'a> {
5 x: &'a u32,
6 }
7
8 fn foo(x: &Foo) {}
9 //~^ WARN hidden lifetime parameters in types are deprecated
10
11 fn main() {}