about summary refs log tree commit diff
path: root/tests/ui/pub/pub-ident-fn.rs
blob: 1032f3375ea8733b31c406a5892d20e768c16be2 (plain)
1
2
3
4
5
6
7
8
//@ run-rustfix

pub foo(_s: usize) -> bool { true }
//~^ ERROR missing `fn` for function definition

fn main() {
    foo(2);
}