summaryrefslogtreecommitdiffstats
path: root/tests/ui/variance/variance-regions-indirect.stderr
blob: fa2f4d507f3d53ff11391a7a520182ef1b2e9ca6 (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
27
28
29
30
31
32
error: [+, -, o, *]
  --> $DIR/variance-regions-indirect.rs:8:1
   |
LL | enum Base<'a, 'b, 'c:'b, 'd> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: [*, o, -, +]
  --> $DIR/variance-regions-indirect.rs:15:1
   |
LL | struct Derived1<'w, 'x:'y, 'y, 'z> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: [o, o, *]
  --> $DIR/variance-regions-indirect.rs:20:1
   |
LL | struct Derived2<'a, 'b:'a, 'c> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: [o, -, *]
  --> $DIR/variance-regions-indirect.rs:25:1
   |
LL | struct Derived3<'a:'b, 'b, 'c> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: [+, -, o]
  --> $DIR/variance-regions-indirect.rs:30:1
   |
LL | struct Derived4<'a, 'b, 'c:'b> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 5 previous errors