summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pub/pub-ident-fn-with-lifetime-2.stderr
blob: 6a9aeaf4a56ac3fdb3bad647d6e9dba9c5e7d191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: missing `fn` for method definition
  --> $DIR/pub-ident-fn-with-lifetime-2.rs:1:4
   |
LL | pub   bar<'a>(&self, _s: &'a usize) -> bool { true }
   |    ^^^
   |
help: add `fn` here to parse `bar` as a public method
   |
LL | pub fn bar<'a>(&self, _s: &'a usize) -> bool { true }
   |     ++

error: aborting due to previous error