2022-04-13 23:38:16 +00:00
|
|
|
error[E0277]: the trait bound `{integer}: Foo` is not satisfied
|
2022-08-30 19:44:00 +00:00
|
|
|
--> $DIR/error.rs:10:27
|
2022-04-13 23:38:16 +00:00
|
|
|
|
|
2022-09-14 23:20:03 +00:00
|
|
|
LL | let dyn_i: dyn* Foo = i;
|
2022-04-13 23:38:16 +00:00
|
|
|
| ^ the trait `Foo` is not implemented for `{integer}`
|
2023-09-10 03:33:07 +00:00
|
|
|
|
|
|
|
|
help: this trait has no implementations, consider adding one
|
|
|
|
--> $DIR/error.rs:6:1
|
|
|
|
|
|
|
|
|
LL | trait Foo {}
|
|
|
|
| ^^^^^^^^^
|
2022-04-13 23:38:16 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-13 23:38:16 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|