blob: f0c9663c0d3a2ccb004b1d2ac99cf3e3ed41036a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// --force-warn $LINT causes $LINT (which is allow-by-default) to warn
//@ compile-flags: --force-warn elided_lifetimes_in_paths
//@ check-pass
struct Foo<'a> {
x: &'a u32,
}
fn foo(x: &Foo) {}
//~^ WARN hidden lifetime parameters in types are deprecated
fn main() {}
|