summaryrefslogtreecommitdiffstats
path: root/tests/ui/pub/pub-ident-fn.stderr
blob: 06dac616443b8995024c975141503411e74fa1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: missing `fn` for function definition
  --> $DIR/pub-ident-fn.rs:3:4
   |
LL | pub   foo(_s: usize) -> bool { true }
   |    ^^^
   |
help: add `fn` here to parse `foo` as a public function
   |
LL | pub fn foo(_s: usize) -> bool { true }
   |     ++

error: aborting due to 1 previous error