rust/tests/ui/variance/variance-regions-indirect.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
761 B
Plaintext
Raw Normal View History

error: [-, +, o, *]
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-indirect.rs:8:1
2018-08-08 07:28:26 -05:00
|
2022-02-13 09:27:59 -06:00
LL | enum Base<'a, 'b, 'c:'b, 'd> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: [*, o, +, -]
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-indirect.rs:15:1
2018-08-08 07:28:26 -05:00
|
2022-02-13 09:27:59 -06:00
LL | struct Derived1<'w, 'x:'y, 'y, 'z> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: [o, o, *]
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-indirect.rs:20:1
2018-08-08 07:28:26 -05:00
|
2022-02-13 09:27:59 -06:00
LL | struct Derived2<'a, 'b:'a, 'c> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: [o, +, *]
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-indirect.rs:25:1
2018-08-08 07:28:26 -05:00
|
2022-02-13 09:27:59 -06:00
LL | struct Derived3<'a:'b, 'b, 'c> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: [-, +, o]
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-indirect.rs:30:1
2018-08-08 07:28:26 -05:00
|
2022-02-13 09:27:59 -06:00
LL | struct Derived4<'a, 'b, 'c:'b> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to 5 previous errors