mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
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
|
|
|