rust/src/test/ui/pub/pub-ident-fn-2.stderr

14 lines
279 B
Plaintext
Raw Normal View History

error: missing `fn` for function definition
2018-12-25 09:56:47 -06:00
--> $DIR/pub-ident-fn-2.rs:1:4
|
2018-02-22 18:42:32 -06:00
LL | pub foo(s: usize) { bar() }
| ^
|
help: add `fn` here to parse `foo` as a public function
|
2018-02-24 17:01:39 -06:00
LL | pub fn foo(s: usize) { bar() }
| ^^
error: aborting due to previous error