// Regression test for . //@ check-pass #![feature(explicit_tail_calls)] #![expect(incomplete_features)] fn foo(x: fn(&i32)) { become bar(x); } fn bar(_: fn(&i32)) {} fn main() {}