rust/tests/crashes/122903-2.rs

10 lines
190 B
Rust
Raw Normal View History

//@ 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
}
}