rust/tests/ui/async-await/issues/issue-65159.stderr

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

31 lines
1017 B
Plaintext
Raw Normal View History

error[E0107]: enum takes 2 generic arguments but 1 generic argument was supplied
--> $DIR/issue-65159.rs:5:20
|
LL | async fn copy() -> Result<()>
2021-02-18 14:01:44 -06:00
| ^^^^^^ -- supplied 1 generic argument
| |
2021-02-18 14:01:44 -06:00
| expected 2 generic arguments
|
2021-02-18 14:01:44 -06:00
help: add missing generic argument
|
LL | async fn copy() -> Result<(), E>
| +++
error[E0107]: enum takes 2 generic arguments but 1 generic argument was supplied
--> $DIR/issue-65159.rs:5:20
|
LL | async fn copy() -> Result<()>
| ^^^^^^ -- supplied 1 generic argument
| |
| expected 2 generic arguments
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
help: add missing generic argument
|
LL | async fn copy() -> Result<(), E>
| +++
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0107`.