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

8 lines
130 B
Rust

//@ known-bug: #136286
//@ compile-flags: --edition=2024
#![feature(async_fn_in_dyn_trait)]
trait A {
async fn b(self: A);
}