blob: 52c6206a75fa6640ab62a6bdcbefde9b54a13444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|