about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-5238.rs
blob: 1d7dd8c76507697511e3e29bc7b24710428b203b (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
// Regression test for #5238 / https://github.com/rust-lang/rust/pull/69562

#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]

fn main() {
    let _ = #[coroutine]
    || {
        yield;
    };
}