summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-88434-minimal-example.rs
blob: b75abcb731e23c9473b95f799acbdf1c6aa8865e (plain)
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() { }