summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/usefulness/nested-exhaustive-match.rs
blob: 8b2294f8432726b3b7ade6ea9abb8c1ca70d5d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616

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(_), ..} => {}
    }
}