about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-yield-expr.rs
blob: 382bf89069e7ec317d33af2f988f9e95ea80cd18 (plain)
1
2
3
4
5
6
7
8
9
//@ edition: 2024
#![feature(stmt_expr_attributes)]

fn main() {
    yield (); //~ ERROR yield syntax is experimental
    //~^ ERROR yield syntax is experimental
    //~^^ ERROR `yield` can only be used in `#[coroutine]` closures, or `gen` blocks
    //~^^^ ERROR yield expression outside of coroutine literal
}