about summary refs log tree commit diff
path: root/tests/ui/functions-closures/fn-bare-item.rs
blob: a0856463bc26e92ba8f2e6b951324f853f47fc8f (plain)
1
2
3
4
5
6
7
8
//@ run-pass
fn f() {
    println!("This is a bare function");
}

pub fn main() {
    f();
}