rust/tests/source/immovable_coroutines.rs

8 lines
99 B
Rust
Raw Normal View History

2023-10-19 21:46:28 +00:00
#![feature(coroutines)]
2018-01-30 22:14:33 +08:00
unsafe fn foo() {
let mut ga = static || {
yield 1;
};
}