mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
14 lines
346 B
Rust
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(_), ..} => {}
|
|
}
|
|
}
|