2023-01-23 23:56:54 +00:00
|
|
|
error[E0308]: mismatched types
|
2023-11-21 13:58:01 +01:00
|
|
|
--> $DIR/upcast-wrong-substs.rs:9:30
|
2023-01-23 23:56:54 +00:00
|
|
|
|
|
|
|
|
LL | let y: &dyn Bar<usize> = x;
|
|
|
|
| --------------- ^ expected trait `Bar`, found trait `Foo`
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
|
= note: expected reference `&dyn Bar<usize>`
|
|
|
|
found reference `&dyn Foo`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-01-23 23:56:54 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|