blob: 93d6770eb47d177975bbd96a67cba312575fa406 (
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 `Struct` to the object type `dyn Trait<isize>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.
|