about summary refs log tree commit diff
path: root/tests/ui/pub/pub-ident-fn-2.stderr
blob: 80f4b14da8952628bd08005fa23c863c733e8f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: missing `fn` for function definition
  --> $DIR/pub-ident-fn-2.rs:3:1
   |
LL | pub foo(_s: usize) { bar() }
   | ^^^^^^^
   |
help: add `fn` here to parse `foo` as a function
   |
LL | pub fn foo(_s: usize) { bar() }
   |     ++

error: aborting due to 1 previous error