diff options
Diffstat (limited to 'tests/ui/binding/match-vec-rvalue.rs')
-rw-r--r-- | tests/ui/binding/match-vec-rvalue.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/binding/match-vec-rvalue.rs b/tests/ui/binding/match-vec-rvalue.rs new file mode 100644 index 000000000..fead2254c --- /dev/null +++ b/tests/ui/binding/match-vec-rvalue.rs @@ -0,0 +1,15 @@ +// run-pass +// Tests that matching rvalues with drops does not crash. + + + +pub fn main() { + match vec![1, 2, 3] { + x => { + assert_eq!(x.len(), 3); + assert_eq!(x[0], 1); + assert_eq!(x[1], 2); + assert_eq!(x[2], 3); + } + } +} |