Fix a #14731 regression in missing_constructor() for vector patterns

Fixes #15080.
This commit is contained in:
Jakub Wieczorek 2014-06-21 14:52:23 +02:00
parent f556c8cbd8
commit d4da4ba4b2
3 changed files with 54 additions and 10 deletions

View file

@ -0,0 +1,30 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
fn main() {
let mut x = &[1, 2, 3, 4];
let mut result = vec!();
loop {
x = match x {
[1, n, 3, ..rest] => {
result.push(n);
rest
}
[n, ..rest] => {
result.push(n);
rest
}
[] =>
break
}
}
assert!(result.as_slice() == [2, 4]);
}

View file

@ -68,9 +68,17 @@ fn d() {
assert_eq!(branch, 1);
}
fn e() {
match &[1, 2, 3] {
[1, 2] => (),
[..] => ()
}
}
pub fn main() {
a();
b();
c();
d();
e();
}