summary refs log tree commit diff
path: root/src/test/ui/pub/pub-ident-fn-with-lifetime.stderr
blob: 90c78141adbf664d440b3ea3cd2f258713e0a1d6 (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:1: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