rust/tests/crashes/122903-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 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
}
}