mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-02 10:04:23 +00:00
8 lines
98 B
Rust
8 lines
98 B
Rust
#![feature(generators)]
|
|
|
|
unsafe fn foo() {
|
|
let mut ga = static || {
|
|
yield 1;
|
|
};
|
|
}
|