Skip to content

Add long error explanation for E0708 #61137 #70611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/librustc_error_codes/error_codes.rs
Original file line number Diff line number Diff line change
@@ -393,6 +393,7 @@ E0703: include_str!("./error_codes/E0703.md"),
E0704: include_str!("./error_codes/E0704.md"),
E0705: include_str!("./error_codes/E0705.md"),
E0706: include_str!("./error_codes/E0706.md"),
E0708: include_str!("./error_codes/E0708.md"),
E0710: include_str!("./error_codes/E0710.md"),
E0712: include_str!("./error_codes/E0712.md"),
E0713: include_str!("./error_codes/E0713.md"),
@@ -605,8 +606,6 @@ E0751: include_str!("./error_codes/E0751.md"),
E0696, // `continue` pointing to a labeled block
// E0702, // replaced with a generic attribute input check
// E0707, // multiple elided lifetimes used in arguments of `async fn`
E0708, // `async` non-`move` closures with parameters are not currently
// supported
// E0709, // multiple different lifetimes used in arguments of `async fn`
E0711, // a feature has been declared with conflicting stability attributes
E0717, // rustc_promotable without stability attribute
26 changes: 26 additions & 0 deletions src/librustc_error_codes/error_codes/E0708.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
`async` non-`move` closures with parameters are currently not supported.

Erroneous code example:

```compile_fail,edition2018
#![feature(async_closure)]

fn main() {
let add_one = async |num: u8| { // error!
num + 1
};
}
```

`async` with non-move is currently not supported with the current
version, you can use successfully by using move:

```edition2018
#![feature(async_closure)]

fn main() {
let add_one = async move |num: u8| { // ok!
num + 1
};
}
```
Original file line number Diff line number Diff line change
@@ -8,3 +8,4 @@ LL | let _ = async |x: u8| {};

error: aborting due to previous error

For more information about this error, try `rustc --explain E0708`.