DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb12u2 / tests / ui / closures / issue-68025.rs
123456789101112
// check-pass fn foo<F, G>(_: G, _: Box<F>) where F: Fn(), G: Fn(Box<F>), { } fn main() { foo(|f| (*f)(), Box::new(|| {})); }