mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-13 23:42:56 +00:00
9 lines
124 B
Rust
9 lines
124 B
Rust
//@ known-bug: rust-lang/rust#124751
|
|
//@ edition: 2024
|
|
|
|
#![feature(gen_blocks)]
|
|
|
|
fn main() {
|
|
let _ = async gen || {};
|
|
}
|