Files
rust/tests/ui/lifetimes/dyn-trait-function-pointer-53419.rs

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

10 lines
144 B
Rust
Raw Normal View History

2025-08-20 14:02:44 -04:00
// https://github.com/rust-lang/rust/issues/53419
//@ check-pass
2018-08-16 20:12:28 -04:00
struct Foo {
2019-05-28 14:46:13 -04:00
bar: dyn for<'r> Fn(usize, &'r dyn FnMut())
2018-08-16 20:12:28 -04:00
}
fn main() {
}