2021-06-07 14:25:19 -05:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/old-lub-glb-object.rs:9:14
|
2020-06-08 18:12:01 -05:00
|
|
|
|
|
|
|
|
LL | _ => y,
|
2021-06-07 14:25:19 -05:00
|
|
|
| ^ one type is more general than the other
|
|
|
|
|
|
2021-09-25 13:04:00 -05:00
|
|
|
= note: expected trait object `dyn for<'a, 'b> Foo<&'a u8, &'b u8>`
|
|
|
|
found trait object `dyn for<'a> Foo<&'a u8, &'a u8>`
|
2020-06-08 18:12:01 -05:00
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/old-lub-glb-object.rs:9:14
|
2020-06-08 18:12:01 -05:00
|
|
|
|
|
|
|
|
LL | _ => y,
|
2021-06-07 14:25:19 -05:00
|
|
|
| ^ one type is more general than the other
|
|
|
|
|
|
2021-09-25 13:04:00 -05:00
|
|
|
= note: expected trait object `dyn for<'a, 'b> Foo<&'a u8, &'b u8>`
|
|
|
|
found trait object `dyn for<'a> Foo<&'a u8, &'a u8>`
|
2020-06-08 18:12:01 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2021-06-07 14:25:19 -05:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|