mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
299 B
Plaintext
14 lines
299 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 1 previous error
|
|
|