mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
13 lines
273 B
Rust
13 lines
273 B
Rust
// --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() {}
|