rust/src/test/ui/issues/issue-35976.stderr
Esteban Küber 0baf61bfdb Increase spacing for suggestions in diagnostics
Make the spacing between the code snippet and verbose structured
suggestions consistent with note and help messages.
2019-10-24 12:26:01 -07:00

14 lines
303 B
Plaintext

error: the `wait` method cannot be invoked on a trait object
--> $DIR/issue-35976.rs:14:9
|
LL | arg.wait();
| ^^^^
|
help: another candidate was found in the following trait, perhaps add a `use` for it:
|
LL | use private::Future;
|
error: aborting due to previous error