mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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!(),
|
|
_ => (),
|
|
}
|
|
}
|