summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pub/pub-ident-fn-2.fixed
blob: afd75a41f7b0f7d026893a11408a69b5d208689b (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);
}