rust/src/test/ui/regions/regions-in-enums.stderr

16 lines
516 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0261]: use of undeclared lifetime name `'foo`
2018-12-25 15:56:47 +00:00
--> $DIR/regions-in-enums.rs:13:9
2018-08-08 12:28:26 +00:00
|
LL | X5(&'foo usize) //~ ERROR use of undeclared lifetime name `'foo`
| ^^^^ undeclared lifetime
error[E0261]: use of undeclared lifetime name `'a`
2018-12-25 15:56:47 +00:00
--> $DIR/regions-in-enums.rs:17:9
2018-08-08 12:28:26 +00:00
|
LL | X6(&'a usize) //~ ERROR use of undeclared lifetime name `'a`
| ^^ undeclared lifetime
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0261`.