blob: 6a801406895d3cd06c7db7749bc77bd34f8cdd41 [file] [log] [blame]
//! regression test for <https://github.com/rust-lang/rust/issues/37686>
//@ run-pass
fn main() {
match (0, 0) {
(usize::MIN, usize::MAX) => {}
_ => {}
}
}