mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
134 B
Rust
10 lines
134 B
Rust
// run-pass
|
|
|
|
fn main() {
|
|
let x = match Some(1) {
|
|
ref _y @ Some(_) => 1,
|
|
None => 2,
|
|
};
|
|
assert_eq!(x, 1);
|
|
}
|