rust/tests/ui/consts/closure-structural-match-issue-90013.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
112 B
Rust
Raw Normal View History

2021-10-17 19:00:00 -05:00
// Regression test for issue 90013.
// check-pass
#![feature(inline_const)]
fn main() {
const { || {} };
}