blob: b1017b104ac242aae775243fac3c40f370202119 [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/53419
//@ check-pass
struct Foo {
bar: dyn for<'r> Fn(usize, &'r dyn FnMut())
}
fn main() {
}