rust/tests/source/issue-3131.rs

9 lines
113 B
Rust
Raw Normal View History

fn main() {
match 3 {
t if match t {
_ => true,
} => {},
_ => {}
}
}