rustc/tests/ui/pattern/usefulness/nested-exhaustive-match.rs
2025-02-17 11:14:05 +01:00

14 lines
346 B
Rust

//@ run-pass
#![allow(dead_code)]
struct Foo { foo: bool, bar: Option<isize>, baz: isize }
pub fn main() {
match (Foo{foo: true, bar: Some(10), baz: 20}) {
Foo{foo: true, bar: Some(_), ..} => {}
Foo{foo: false, bar: None, ..} => {}
Foo{foo: true, bar: None, ..} => {}
Foo{foo: false, bar: Some(_), ..} => {}
}
}