mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
183 B
Rust
12 lines
183 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);
|
|
}
|