]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/coercion-generic-bad.stderr
Rollup merge of #98665 - ChrisDenton:deprecated-suggestion, r=compiler-errors
[rust.git] / src / test / ui / traits / coercion-generic-bad.stderr
1 error[E0277]: the trait bound `Struct: Trait<isize>` is not satisfied
2   --> $DIR/coercion-generic-bad.rs:16:36
3    |
4 LL |     let s: Box<dyn Trait<isize>> = Box::new(Struct { person: "Fred" });
5    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait<isize>` is not implemented for `Struct`
6    |
7    = help: the trait `Trait<&'static str>` is implemented for `Struct`
8    = note: required for the cast from `Struct` to the object type `dyn Trait<isize>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.