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}`
|
2023-09-09 22:33:07 -05:00
|
|
|
|
|
|
|
|
help: this trait has no implementations, consider adding one
|
|
|
|
--> $DIR/error.rs:6:1
|
|
|
|
|
|
|
|
|
LL | trait Foo {}
|
|
|
|
| ^^^^^^^^^
|
2022-04-13 18:38:16 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-13 18:38:16 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|