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