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