mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 13:40:15 +03:00
10 lines
135 B
Rust
10 lines
135 B
Rust
//@ run-pass
|
|
|
|
fn main() {
|
|
let x = match Some(1) {
|
|
ref _y @ Some(_) => 1,
|
|
None => 2,
|
|
};
|
|
assert_eq!(x, 1);
|
|
}
|