2023-01-23 17:56:54 -06:00
|
|
|
error[E0308]: mismatched types
|
2023-11-21 06:58:01 -06:00
|
|
|
--> $DIR/upcast-wrong-substs.rs:9:30
|
2023-01-23 17:56:54 -06: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 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-01-23 17:56:54 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|