Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
pub
/
pub-ident-fn.rs
blob: 1032f3375ea8733b31c406a5892d20e768c16be2 [
file
] [
log
] [
blame
]
//@ run-rustfix
pub
foo
(
_s
:
usize
)
->
bool
{
true
}
//~^ ERROR missing `fn` for function definition
fn
main
()
{
foo
(
2
);
}