rust/tests/ui/borrowck/issue-88434-minimal-example.rs

15 lines
230 B
Rust

// 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() { }