summaryrefslogtreecommitdiffstats
path: root/tests/ui/variance/variance-regions-indirect.stderr
blob: edf2626d5984fffda8ea53dce6a032b03cc5612c (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