2018-11-30 17:05:13 -06:00
|
|
|
error: missing `fn` for function definition
|
2020-07-02 00:32:12 -05:00
|
|
|
--> $DIR/pub-ident-fn-with-lifetime.rs:3:4
|
2018-11-26 12:11:46 -06:00
|
|
|
|
|
|
|
|
LL | pub foo<'a>(_s: &'a usize) -> bool { true }
|
|
|
|
| ^^^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2018-11-30 17:05:13 -06:00
|
|
|
help: add `fn` here to parse `foo` as a public function
|
2018-11-26 12:11:46 -06:00
|
|
|
|
|
|
|
|
LL | pub fn foo<'a>(_s: &'a usize) -> bool { true }
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++
|
2018-11-26 12:11:46 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-11-26 12:11:46 -06:00
|
|
|
|