rust/src/test/ui/error-codes/E0261.stderr
2018-12-25 21:08:33 -07:00

16 lines
429 B
Plaintext

error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/E0261.rs:1:12
|
LL | fn foo(x: &'a str) { } //~ ERROR E0261
| ^^ undeclared lifetime
error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/E0261.rs:5: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`.