Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
functions-closures
/
fn-bare-item.rs
blob: a0856463bc26e92ba8f2e6b951324f853f47fc8f [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
f
()
{
println
!(
"This is a bare function"
);
}
pub
fn
main
()
{
f
();
}