mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
182 B
Rust
13 lines
182 B
Rust
// run-pass
|
|
|
|
fn destructure(x: Option<isize>) -> isize {
|
|
match x {
|
|
None => 0,
|
|
Some(ref v) => *v
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
assert_eq!(destructure(Some(22)), 22);
|
|
}
|