rust/src/test/ui/editions/dyn-trait-sugg-2021.stderr

15 lines
347 B
Plaintext
Raw Normal View History

2021-07-10 08:00:54 +00:00
error[E0782]: trait objects must include the `dyn` keyword
--> $DIR/dyn-trait-sugg-2021.rs:10:5
|
LL | Foo::hi(123);
2021-07-10 08:00:54 +00:00
| ^^^
|
help: add `dyn` keyword before this trait
|
LL | <dyn Foo>::hi(123);
| ~~~~~~~~~
error: aborting due to previous error
2021-11-10 17:49:30 +00:00
For more information about this error, try `rustc --explain E0782`.