Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
pub
/
pub-ident-fn-with-lifetime.fixed
blob: e510ace5fc14c91f44874a240b0ff040a409f4f9 [
file
] [
log
] [
blame
]
// run-rustfix
pub fn foo
<
'a>(_s: &'
a usize
)
->
bool
{
true
}
//~^ ERROR missing `fn` for function definition
fn main
()
{
foo
(&
2
);
}