rust/tests/crashes/137751.rs
2025-03-08 20:13:07 +01:00

6 lines
141 B
Rust

//@ known-bug: #137751
//@ compile-flags: --edition=2021 -Znext-solver=globally
async fn test() {
Box::pin(test()).await;
}
fn main() {}