]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/coercion-generic-bad.stderr
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[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 following implementations were found:
8              <Struct as Trait<&'static str>>
9    = note: required for the cast to the object type `dyn Trait<isize>`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0277`.