mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 11:51:31 +03:00
8 lines
99 B
Rust
8 lines
99 B
Rust
#![feature(generators)]
|
|
|
|
unsafe fn foo() {
|
|
let mut ga = static || {
|
|
yield 1;
|
|
};
|
|
}
|