mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
14 lines
281 B
Plaintext
14 lines
281 B
Plaintext
error: missing `fn` for function definition
|
|
--> $DIR/pub-ident-fn-2.rs:3:4
|
|
|
|
|
LL | pub foo(_s: usize) { bar() }
|
|
| ^
|
|
|
|
|
help: add `fn` here to parse `foo` as a public function
|
|
|
|
|
LL | pub fn foo(_s: usize) { bar() }
|
|
| ++
|
|
|
|
error: aborting due to previous error
|
|
|