rust/tests/ui/dyn-star/error.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
321 B
Plaintext
Raw Normal View History

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