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-18 00:00:00 +00:00
// Regression test for issue 90013.
// check-pass
#![feature(inline_const)]
fn main() {
const { || {} };
}