blob: 44b4c49935214d8d52823d85c97e61d0dd3e1521 [file] [log] [blame] [edit]
//@ run-pass
// Test that param substitutions from the correct environment are
// used when codegenning unboxed closure calls.
//@ pretty-expanded FIXME #23616
pub fn inside<F: Fn()>(c: F) {
c();
}
// Use different number of type parameters and closure type to trigger
// an obvious ICE when param environments are mixed up
pub fn outside<A,B>() {
inside(|| {});
}
fn main() {
outside::<(),()>();
}