mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-26 06:35:27 +00:00
8 lines
99 B
Rust
8 lines
99 B
Rust
#![feature(generators)]
|
|
|
|
unsafe fn foo() {
|
|
let mut ga = static || {
|
|
yield 1;
|
|
};
|
|
}
|