about summary refs log tree commit diff
path: root/tests/ui/async-await/for-await-2015.rs
blob: c2bd39c844663fc15b58a9a04863002a63a9ee07 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ edition:2015
//@ 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 {}
}