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