about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-114219.rs
blob: 3f7e0f685acd278a5a21386a3bc51e27ce103b91 (plain)
1
2
3
4
5
6
//@ edition: 2015

fn main() {
    async move {};
    //~^ ERROR `async move` blocks are only allowed in Rust 2018 or later
}