blob: 6dac9fe335f692a986494b41d211d5e5cbf9b2e2 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0277]: the trait bound `{integer}: TraitA` is not satisfied
--> $DIR/vtable-res-trait-param.rs:17:7
|
LL | b.gimme_an_a(y) //~ ERROR `{integer}: TraitA` is not satisfied
| ^^^^^^^^^^ the trait `TraitA` is not implemented for `{integer}`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.
|