blob: 24ac5d2fbbf909d8b7d5a266a9f0952e667e8306 [file] [log] [blame]
// run-pass
struct S;
fn main() {
match Some(&S) {
Some(&S) => {},
_x => unreachable!()
}
match Some(&S) {
Some(&S) => {},
None => unreachable!()
}
}