DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / 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(|| {})); }