blob: 3d0c171e013b370f0e31e39fe5acfeb5929cdc86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
error[E0308]: mismatched types
--> $DIR/old-lub-glb-object.rs:9:14
|
LL | _ => y,
| ^ one type is more general than the other
|
= note: expected trait object `dyn for<'a, 'b> Foo<&'a u8, &'b u8>`
found trait object `dyn for<'a> Foo<&'a u8, &'a u8>`
error[E0308]: mismatched types
--> $DIR/old-lub-glb-object.rs:9:14
|
LL | _ => y,
| ^ one type is more general than the other
|
= note: expected trait object `dyn for<'a, 'b> Foo<&'a u8, &'b u8>`
found trait object `dyn for<'a> Foo<&'a u8, &'a u8>`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.
|