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