2023-07-26 18:54:55 -05:00
|
|
|
error[E0308]: mismatched types
|
2024-03-10 20:18:41 -05:00
|
|
|
--> $DIR/illegal-upcast-from-impl.rs:17:66
|
2023-07-26 18:54:55 -05:00
|
|
|
|
|
|
|
|
LL | fn illegal(x: &dyn Sub<Assoc = ()>) -> &dyn Super<Assoc = i32> { x }
|
|
|
|
| ----------------------- ^ expected trait `Super`, found trait `Sub`
|
|
|
|
| |
|
|
|
|
| expected `&dyn Super<Assoc = i32>` because of return type
|
|
|
|
|
|
|
|
|
= note: expected reference `&dyn Super<Assoc = i32>`
|
|
|
|
found reference `&dyn Sub<Assoc = ()>`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-07-26 18:54:55 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|