mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
9 lines
159 B
Rust
9 lines
159 B
Rust
//@ known-bug: rust-lang/rust#124751
|
|
//@ compile-flags: -Zunstable-options --edition=2024
|
|
|
|
#![feature(gen_blocks)]
|
|
|
|
fn main() {
|
|
let _ = async gen || {};
|
|
}
|