about summary refs log tree commit diff
path: root/tests/ui/variance/variance-associated-types.stderr
blob: ca010b7e7ef405253ef082e4d237a3ee5e7e2de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: ['a: +, T: +]
  --> $DIR/variance-associated-types.rs:13:1
   |
LL | struct Foo<'a, T : Trait<'a>> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: ['a: o, T: o]
  --> $DIR/variance-associated-types.rs:18:1
   |
LL | struct Bar<'a, T : Trait<'a>> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors