mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 05:26:17 +00:00
22 lines
303 B
Rust
22 lines
303 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!(),
|
|
_ => (),
|
|
}
|
|
}
|