rust/tests/ui/inline-const/expr-with-block.rs

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

11 lines
118 B
Rust
Raw Normal View History

//@ check-pass
2024-04-19 10:54:41 -05:00
fn main() {
match true {
true => const {}
false => ()
}
const {}
()
}