Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
pub
/
pub-ident-fn.fixed
blob: 65ed8c7b4dd7eecad52af4f9419adc3c2de351d4 [
file
]
// run-rustfix
pub fn foo
(
_s
:
usize
)
->
bool
{
true
}
//~^ ERROR missing `fn` for function definition
fn main
()
{
foo
(
2
);
}