about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-coroutines.rs
blob: b3df2351b680b674e8ad695ada4568a9d1faa4ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ revisions: e2024 none
//@[e2024] compile-flags: --edition 2024 -Zunstable-options

fn main() {
    yield true; //~ ERROR yield syntax is experimental
                //~^ ERROR yield expression outside of coroutine literal
                //[none]~^^ ERROR yield syntax is experimental

    let _ = || yield true; //~ ERROR yield syntax is experimental
    //[none]~^ ERROR yield syntax is experimental
}

#[cfg(FALSE)]
fn foo() {
    // Ok in 2024 edition
    yield; //[none]~ ERROR yield syntax is experimental
    yield 0; //[none]~ ERROR yield syntax is experimental
}