2018-11-30 23:05:13 +00:00
|
|
|
error: missing `fn` for function definition
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/pub-ident-fn-2.rs:3:4
|
2017-11-21 16:03:02 +00:00
|
|
|
|
|
2020-07-02 05:32:12 +00:00
|
|
|
LL | pub foo(_s: usize) { bar() }
|
2017-11-21 16:03:02 +00:00
|
|
|
| ^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-11-30 23:05:13 +00:00
|
|
|
help: add `fn` here to parse `foo` as a public function
|
2017-11-21 16:03:02 +00:00
|
|
|
|
|
2020-07-02 05:32:12 +00:00
|
|
|
LL | pub fn foo(_s: usize) { bar() }
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++
|
2017-11-21 16:03:02 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-11-21 16:03:02 +00:00
|
|
|
|