about summary refs log tree commit diff
path: root/tests/ui/lifetimes/dyn-trait-function-pointer-53419.rs
blob: b1017b104ac242aae775243fac3c40f370202119 (plain)
1
2
3
4
5
6
7
8
9
// https://github.com/rust-lang/rust/issues/53419
//@ check-pass

struct Foo {
    bar: dyn for<'r> Fn(usize, &'r dyn FnMut())
}

fn main() {
}