2021-07-25 18:43:48 +08:00
|
|
|
error[E0308]: mismatched types
|
2024-12-16 02:29:00 +01:00
|
|
|
--> $DIR/multiple-occurrence-ambiguousity.rs:19:26
|
2021-07-25 18:43:48 +08: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 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-25 18:43:48 +08:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|