mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +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 || {};
|
|
}
|