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