summary refs log tree commit diff
path: root/src/test/ui/issues/issue-37550.rs
blob: 505c030b967122758a770ba84f1d7081bc9ee04d (plain)
1
2
3
4
5
6
const fn x() {
    let t = true;
    let x = || t; //~ ERROR function pointers in const fn are unstable
}

fn main() {}