rust/tests/ui/binding/match-value-binding-in-guar...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
334 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
fn foo(x: Option<Box<isize>>, b: bool) -> isize {
match x {
None => { 1 }
2013-03-16 06:27:15 +08:00
Some(ref x) if b => { *x.clone() }
Some(_) => { 0 }
}
}
pub fn main() {
foo(Some(Box::new(22)), true);
foo(Some(Box::new(22)), false);
foo(None, true);
foo(None, false);
}