rustc/tests/ui/async-await/incorrect-move-async-order-issue-79694.rs
2023-08-02 10:33:26 +02:00

9 lines
177 B
Rust

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