summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-88434-minimal-example.rs
blob: 7618d001e86eecf3e4813714c05fd86d7f333cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Regression test related to issue 88434

const _CONST: &() = &f(&|_| {});
//~^ ERROR any use of this value
//~| WARNING this was previously

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

fn main() { }