rust/tests/ui/async-await/for-await-2015.rs

11 lines
199 B
Rust

//@ check-pass
#![feature(async_for_loop)]
// Make sure we don't break `for await` loops in the 2015 edition, where `await` was allowed as an
// identifier.
fn main() {
for await in 0..3 {}
}