rust/tests/ui/async-await/incorrect-move-async-order-issue-79694.fixed
2023-01-11 09:32:08 +00:00

9 lines
177 B
Rust

// run-rustfix
// edition:2018
// Regression test for issue 79694
fn main() {
let _ = async move { }; //~ ERROR 7:13: 7:23: the order of `move` and `async` is incorrect
}