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

pub fn foo(_s: usize) { bar() }
//~^ ERROR missing `fn` for function definition

fn bar() {}

fn main() {
    foo(2);
}