mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
fb44c848c3
These help silence follow up errors
17 lines
523 B
Plaintext
17 lines
523 B
Plaintext
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
|
|
|
|
|
help: add missing generic argument
|
|
|
|
|
LL | async fn copy() -> Result<(), E>
|
|
| +++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|