summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/closure-structural-match-issue-90013.rs
blob: 1952ddb941e511db20bccf3446e0cb08de658154 (plain)
1
2
3
4
5
6
7
// Regression test for issue 90013.
// check-pass
#![feature(inline_const)]

fn main() {
    const { || {} };
}