2018-11-30 17:05:13 -06:00
|
|
|
error: missing `fn` for function definition
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/pub-ident-fn-2.rs:1:4
|
2017-11-21 10:03:02 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | pub foo(s: usize) { bar() }
|
2017-11-21 10:03:02 -06: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
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | pub fn foo(s: usize) { bar() }
|
2017-11-21 10:03:02 -06:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|