rust/tests/source/immovable_coroutines.rs

8 lines
99 B
Rust

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