mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +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);
|
|
}
|