rust/tests/crashes/122903-2.rs
2024-04-14 11:21:51 +02:00

10 lines
190 B
Rust

//@ known-bug: #122903
impl Struct {
async fn box_box_ref_Struct(
self: Box<Box<Self, impl FnMut(&mut Box<Box<Self, impl FnMut(&mut Self)>>)>>
) -> &u32 {
f
}
}