summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-81899.rs
blob: 24b20b6507b1186486ce4847c40d5d645e84680e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Regression test for #81899.
// The `panic!()` below is important to trigger the fixed ICE.

const _CONST: &[u8] = &f(&[], |_| {});
//~^ ERROR constant

const fn f<F>(_: &[u8], _: F) -> &[u8]
where
    F: FnMut(&u8),
{
    panic!() //~ ERROR: evaluation of constant value failed
}

fn main() {}