Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
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
}