These tests specifically test 2015 edition behavior, so ensure that they can only be run with this edition
6 lines
126 B
Rust
6 lines
126 B
Rust
//@ edition: 2015
|
|
|
|
fn main() {
|
|
async move {};
|
|
//~^ ERROR `async move` blocks are only allowed in Rust 2018 or later
|
|
}
|