2018-06-26 03:04:08 +00:00
|
|
|
// edition:2018
|
2018-06-06 22:50:59 +00:00
|
|
|
|
2019-08-02 01:45:58 +00:00
|
|
|
#![feature(async_closure)]
|
2018-06-06 22:50:59 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = async |x: u8| {};
|
|
|
|
//~^ ERROR `async` non-`move` closures with arguments are not currently supported
|
|
|
|
}
|