2021-07-25 05:43:48 -05:00
|
|
|
error[E0308]: mismatched types
|
2023-11-21 06:58:01 -06:00
|
|
|
--> $DIR/multiple-occurrence-ambiguousity.rs:19:26
|
2021-07-25 05:43:48 -05:00
|
|
|
|
|
|
|
|
LL | let t: &dyn Bar<_> = s;
|
|
|
|
| ----------- ^ expected trait `Bar`, found trait `Foo`
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
|
= note: expected reference `&dyn Bar<_>`
|
|
|
|
found reference `&dyn Foo`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-25 05:43:48 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|