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