about summary refs log tree commit diff
path: root/tests/ui/coroutine/postfix-yield-after-cast.rs
blob: 472efb9f5138b49a37d5dad58f873f1b7ff64562 (plain)
1
2
3
4
5
6
7
8
9
10
// Regression test for <https://github.com/rust-lang/rust/issues/144527>.

#![feature(yield_expr, coroutines)]

fn main() {
    #[coroutine] || {
        0 as u8.yield
        //~^ ERROR cast cannot be followed by `.yield`
    };
}