about summary refs log tree commit diff
path: root/tests/ui/traits/span-bug-issue-121414.stderr
blob: 2eeda00d9cb745db291c3cd0928e0048fec79f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0261]: use of undeclared lifetime name `'f`
  --> $DIR/span-bug-issue-121414.rs:5:22
   |
LL | impl<'a> Bar for Foo<'f> {
   |                      ^^ undeclared lifetime
   |
help: consider introducing lifetime `'f` here
   |
LL | impl<'f, 'a> Bar for Foo<'f> {
   |      +++

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0261`.