mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
321 B
Plaintext
14 lines
321 B
Plaintext
error: missing `fn` for function definition
|
|
--> $DIR/pub-ident-fn-with-lifetime.rs:3:1
|
|
|
|
|
LL | pub foo<'a>(_s: &'a usize) -> bool { true }
|
|
| ^^^^^^^
|
|
|
|
|
help: add `fn` here to parse `foo` as a function
|
|
|
|
|
LL | pub fn foo<'a>(_s: &'a usize) -> bool { true }
|
|
| ++
|
|
|
|
error: aborting due to 1 previous error
|
|
|