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