rust/src/test/run-pass/nested-exhaustive-alt.rs
2012-02-15 17:21:03 +01:00

7 lines
143 B
Rust

fn main() {
alt @{foo: true, bar: some(10), baz: 20} {
@{foo: true, bar: some(_), _} {}
@{foo: false, bar: none, _} {}
}
}