rust/src/test/ui/error-codes/E0261.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

15 lines
431 B
Text

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`.