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