Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
test
/
ui
/
lint
/
force-warn
/
force-allowed-by-default-lint.rs
blob: 4799429ea2c69317f6e084e84fd4ccea37578160 [
file
] [
log
] [
blame
]
// compile-flags: --force-warn elided_lifetimes_in_paths -Zunstable-options
// check-pass
struct
Foo
<
'
a
>
{
x
:
&
'
a u32
,
}
fn
foo
(
x
:
&
Foo
)
{}
//~^ WARN hidden lifetime parameters in types are deprecated
fn
main
()
{}