rust/src/test/ui/pub/pub-ident-fn.stderr
2018-12-25 21:08:33 -07:00

13 lines
292 B
Plaintext

error: missing `fn` for function definition
--> $DIR/pub-ident-fn.rs:3:4
|
LL | pub foo(_s: usize) -> bool { true }
| ^^^
help: add `fn` here to parse `foo` as a public function
|
LL | pub fn foo(_s: usize) -> bool { true }
| ^^
error: aborting due to previous error