mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
201 B
Rust
15 lines
201 B
Rust
//@ run-pass
|
|
|
|
struct S;
|
|
|
|
fn main() {
|
|
match Some(&S) {
|
|
Some(&S) => {},
|
|
_x => unreachable!()
|
|
}
|
|
match Some(&S) {
|
|
Some(&S) => {},
|
|
None => unreachable!()
|
|
}
|
|
}
|