blob: e7e8a796796b3c03cde2988ad8deb659f4e6a34e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0277]: the trait bound `Struct: Trait<isize>` is not satisfied
--> $DIR/coercion-generic-bad.rs:16:36
|
LL | let s: Box<dyn Trait<isize>> = Box::new(Struct { person: "Fred" });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait<isize>` is not implemented for `Struct`
|
= help: the trait `Trait<&'static str>` is implemented for `Struct`
= note: required for the cast from `Box<Struct>` to `Box<dyn Trait<isize>>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.
|