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

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

16 lines
451 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}`
|
help: this trait has no implementations, consider adding one
--> $DIR/error.rs:6:1
|
LL | trait Foo {}
| ^^^^^^^^^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.