blob: b6ce2450e22aa16912786d8f7da62deed0c13c7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
error: rustc_outlives
--> $DIR/enum.rs:7:1
|
LL | enum Foo<'a, T> {
| ^^^^^^^^^^^^^^^
|
= note: T: 'a
error: rustc_outlives
--> $DIR/enum.rs:13:1
|
LL | struct Bar<'b, U> {
| ^^^^^^^^^^^^^^^^^
|
= note: U: 'b
error: rustc_outlives
--> $DIR/enum.rs:19:1
|
LL | enum Ying<'c, K> {
| ^^^^^^^^^^^^^^^^
|
= note: K: 'c
error: aborting due to 3 previous errors
|