about summary refs log tree commit diff
path: root/src/test/ui/variance/variance-invariant-arg-object.stderr
blob: 50a8697d4392f64f02332d714e5bddc1281d11b1 (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
33
34
35
36
37
38
39
40
41
error[E0308]: mismatched types
  --> $DIR/variance-invariant-arg-object.rs:11:5
   |
LL |     v
   |     ^ lifetime mismatch
   |
   = note: expected type `dyn Get<&'min i32>`
              found type `dyn Get<&'max i32>`
note: the lifetime 'min as defined on the function body at 7:21...
  --> $DIR/variance-invariant-arg-object.rs:7:21
   |
LL | fn get_min_from_max<'min, 'max>(v: Box<dyn Get<&'max i32>>)
   |                     ^^^^
note: ...does not necessarily outlive the lifetime 'max as defined on the function body at 7:27
  --> $DIR/variance-invariant-arg-object.rs:7:27
   |
LL | fn get_min_from_max<'min, 'max>(v: Box<dyn Get<&'max i32>>)
   |                           ^^^^

error[E0308]: mismatched types
  --> $DIR/variance-invariant-arg-object.rs:18:5
   |
LL |     v
   |     ^ lifetime mismatch
   |
   = note: expected type `dyn Get<&'max i32>`
              found type `dyn Get<&'min i32>`
note: the lifetime 'min as defined on the function body at 14:21...
  --> $DIR/variance-invariant-arg-object.rs:14:21
   |
LL | fn get_max_from_min<'min, 'max, G>(v: Box<dyn Get<&'min i32>>)
   |                     ^^^^
note: ...does not necessarily outlive the lifetime 'max as defined on the function body at 14:27
  --> $DIR/variance-invariant-arg-object.rs:14:27
   |
LL | fn get_max_from_min<'min, 'max, G>(v: Box<dyn Get<&'min i32>>)
   |                           ^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0308`.