mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
9 lines
190 B
Rust
9 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
|
|
}
|
|
}
|