mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 13:34:38 +00:00
17 lines
239 B
Rust
17 lines
239 B
Rust
// @compile-flags: -Zlint-mir
|
|
//@ check-pass
|
|
|
|
#![feature(inline_const_pat)]
|
|
|
|
fn main() {
|
|
match 1 {
|
|
const {
|
|
|| match 0 {
|
|
x => 0,
|
|
};
|
|
0
|
|
} => (),
|
|
_ => (),
|
|
}
|
|
}
|