diff options
Diffstat (limited to 'src/test/ui/binding/match-value-binding-in-guard-3291.rs')
| -rw-r--r-- | src/test/ui/binding/match-value-binding-in-guard-3291.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/binding/match-value-binding-in-guard-3291.rs b/src/test/ui/binding/match-value-binding-in-guard-3291.rs new file mode 100644 index 00000000000..4b209b20a18 --- /dev/null +++ b/src/test/ui/binding/match-value-binding-in-guard-3291.rs @@ -0,0 +1,19 @@ +// run-pass +// pretty-expanded FIXME #23616 + +#![feature(box_syntax)] + +fn foo(x: Option<Box<isize>>, b: bool) -> isize { + match x { + None => { 1 } + 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); +} |
