rust/tests/target/immovable_coroutines.rs

8 lines
98 B
Rust

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