2018-11-30 15:05:13 -08:00
|
|
|
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 }
|
|
|
|
| ^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-11-30 15:05:13 -08:00
|
|
|
help: add `fn` here to parse `bar` as a public method
|
|
|
|
|
|
|
|
|
LL | pub fn bar<'a>(&self, _s: &'a usize) -> bool { true }
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2018-11-30 15:05:13 -08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|