rust/tests/crashes/124751.rs
2024-05-05 23:41:08 +02:00

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 || {};
}