1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Regression test related to issue 88434 const _CONST: &() = &f(&|_| {}); //~^ constant const fn f<F>(_: &F) where F: FnMut(&u8), { panic!() //~ ERROR evaluation of constant value failed //~^ panic } fn main() { }