Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
functions-closures
/
fn-bare-item.rs
blob: a0856463bc26e92ba8f2e6b951324f853f47fc8f [
file
] [
log
] [
blame
]
//@ run-pass
fn
f
()
{
println
!(
"This is a bare function"
);
}
pub
fn
main
()
{
f
();
}