2022-04-13 18:38:16 -05:00
|
|
|
error[E0277]: the trait bound `{integer}: Foo` is not satisfied
|
2022-08-30 14:44:00 -05:00
|
|
|
--> $DIR/error.rs:10:27
|
2022-04-13 18:38:16 -05:00
|
|
|
|
|
2022-09-14 18:20:03 -05:00
|
|
|
LL | let dyn_i: dyn* Foo = i;
|
2022-04-13 18:38:16 -05:00
|
|
|
| ^ the trait `Foo` is not implemented for `{integer}`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|