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-2.rs:3:4
|
2017-11-21 10:03:02 -06:00
|
|
|
|
|
2020-07-02 00:32:12 -05:00
|
|
|
LL | pub foo(_s: usize) { bar() }
|
2017-11-21 10:03:02 -06:00
|
|
|
| ^
|
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
|
2017-11-21 10:03:02 -06:00
|
|
|
|
|
2020-07-02 00:32:12 -05:00
|
|
|
LL | pub fn foo(_s: usize) { bar() }
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++
|
2017-11-21 10:03:02 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|