summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0261.stderr
blob: e9140ec2c74867f3bf972b88ada2a5c8e310acba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0261]: use of undeclared lifetime name `'a`
  --> $DIR/E0261.rs:11:12
   |
LL | fn foo(x: &'a str) { } //~ ERROR E0261
   |            ^^ undeclared lifetime

error[E0261]: use of undeclared lifetime name `'a`
  --> $DIR/E0261.rs:15:9
   |
LL |     x: &'a str, //~ ERROR E0261
   |         ^^ undeclared lifetime

error: aborting due to 2 previous errors

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