10 lines
144 B
Rust
10 lines
144 B
Rust
// https://github.com/rust-lang/rust/issues/53419
|
|
//@ check-pass
|
|
|
|
struct Foo {
|
|
bar: dyn for<'r> Fn(usize, &'r dyn FnMut())
|
|
}
|
|
|
|
fn main() {
|
|
}
|