summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-in-enums.stderr
blob: 66537653291c7ce98a2e2869c46ea832ea63e9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0261]: use of undeclared lifetime name `'foo`
  --> $DIR/regions-in-enums.rs:13:9
   |
LL | enum No0 {
   |         - help: consider introducing lifetime `'foo` here: `<'foo>`
LL |     X5(&'foo usize)
   |         ^^^^ undeclared lifetime

error[E0261]: use of undeclared lifetime name `'a`
  --> $DIR/regions-in-enums.rs:17:9
   |
LL | enum No1 {
   |         - help: consider introducing lifetime `'a` here: `<'a>`
LL |     X6(&'a usize)
   |         ^^ undeclared lifetime

error: aborting due to 2 previous errors

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