summary refs log tree commit diff
path: root/src/test/run-pass/nested-exhaustive-alt.rs
blob: a432578b8f4f9adfae1739564452e37a0dd652f8 (plain)
1
2
3
4
5
6
fn main() {
    alt @{foo: true, bar: some(10), baz: 20} {
      @{foo: true, bar: some(_), _} {}
      @{foo: false, bar: none, _} {}
    }
}