mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 04:02:54 +00:00
22 lines
304 B
Rust
22 lines
304 B
Rust
//@ run-pass
|
|
|
|
struct Foo{
|
|
f : isize,
|
|
}
|
|
|
|
pub fn main() {
|
|
let f = Foo{f: 1};
|
|
match f {
|
|
Foo{f: 0} => panic!(),
|
|
Foo{..} => (),
|
|
}
|
|
match f {
|
|
Foo{f: 0} => panic!(),
|
|
Foo{f: _f} => (),
|
|
}
|
|
match f {
|
|
Foo{f: 0} => panic!(),
|
|
_ => (),
|
|
}
|
|
}
|