blob: b75abcb731e23c9473b95f799acbdf1c6aa8865e [file] [log] [blame] [edit]
// 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() { }