rust/src/test/ui/error-codes/E0261.stderr

16 lines
441 B
Plaintext
Raw Normal View History

2018-02-07 19:35:35 -08:00
error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/E0261.rs:11:12
|
11 | fn foo(x: &'a str) { } //~ ERROR E0261
| ^^ undeclared lifetime
error[E0261]: use of undeclared lifetime name `'a`
--> $DIR/E0261.rs:15:9
|
15 | x: &'a str, //~ ERROR E0261
| ^^ undeclared lifetime
error: aborting due to 2 previous errors
2018-02-19 21:40:25 +01:00
If you want more information on this error, try using "rustc --explain E0261"