Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
static
/
static-lifetime-bound.rs
blob: b5da91ec3b6b0e13598e77bd1729789b3ed43cd7 [
file
] [
log
] [
blame
]
fn
f
<
'a: '
static
>(
_
:
&
'a i32) {} //~WARN unnecessary lifetime parameter `'
a
`
fn
main
()
{
let
x
=
0
;
f
(&
x
);
//~ERROR does not live long enough
}