rust/src/test/ui/binding/match-value-binding-in-guard-3291.rs

20 lines
347 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
#![feature(box_syntax)]
fn foo(x: Option<Box<isize>>, b: bool) -> isize {
match x {
None => { 1 }
2013-03-15 17:27:15 -05:00
Some(ref x) if b => { *x.clone() }
Some(_) => { 0 }
}
}
pub fn main() {
foo(Some(box 22), true);
foo(Some(box 22), false);
foo(None, true);
foo(None, false);
}