about summary refs log tree commit diff
path: root/src/tools/rustfmt/tests/target/immovable_coroutines.rs
blob: 539049577a00e11d1ee9f83dd8855813f794146f (plain)
1
2
3
4
5
6
7
8
#![feature(coroutines)]

unsafe fn foo() {
    let mut ga = #[coroutine]
    static || {
        yield 1;
    };
}