rust/tests/ui/pub/pub-ident-fn-with-lifetime.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
327 B
Plaintext
Raw Normal View History

error: missing `fn` for function definition
2020-07-02 00:32:12 -05:00
--> $DIR/pub-ident-fn-with-lifetime.rs:3:4
|
LL | pub foo<'a>(_s: &'a usize) -> bool { true }
| ^^^
|
help: add `fn` here to parse `foo` as a public function
|
LL | pub fn foo<'a>(_s: &'a usize) -> bool { true }
| ++
error: aborting due to previous error