8 lines
98 B
Rust
8 lines
98 B
Rust
#![feature(generators)]
|
|
|
|
unsafe fn foo() {
|
|
let mut ga = static || {
|
|
yield 1;
|
|
};
|
|
}
|