Fix incorrect non-exhaustive matching for fixed length vecs
Code like this is fixed now:
```
fn foo(p: [u8, ..4]) {
match p {
[a, b, c, d] => {}
};
}
```
Invalid constructors are not reported as errors yet:
```
fn foo(p: [u8, ..4]) {
match p {
[_, _, _] => {} // this should be error
[_, _, _, _, _, .._] => {} // and this
_ => {}
}
}
```
Issue #8311 is partially fixed by this commit. Fixed-length arrays in
let statement are not yet allowed:
```
let [a, b, c] = [1, 2, 3]; // still fails
```
2013-08-07 13:07:24 -05:00
|
|
|
fn a() {
|
|
|
|
let x = [1, 2, 3];
|
|
|
|
match x {
|
2013-09-19 00:04:03 -05:00
|
|
|
[1, 2, 4] => unreachable!(),
|
|
|
|
[0, 2, 3, .._] => unreachable!(),
|
|
|
|
[0, .._, 3] => unreachable!(),
|
|
|
|
[0, .._] => unreachable!(),
|
Fix incorrect non-exhaustive matching for fixed length vecs
Code like this is fixed now:
```
fn foo(p: [u8, ..4]) {
match p {
[a, b, c, d] => {}
};
}
```
Invalid constructors are not reported as errors yet:
```
fn foo(p: [u8, ..4]) {
match p {
[_, _, _] => {} // this should be error
[_, _, _, _, _, .._] => {} // and this
_ => {}
}
}
```
Issue #8311 is partially fixed by this commit. Fixed-length arrays in
let statement are not yet allowed:
```
let [a, b, c] = [1, 2, 3]; // still fails
```
2013-08-07 13:07:24 -05:00
|
|
|
[1, 2, 3] => (),
|
2013-09-19 00:04:03 -05:00
|
|
|
[_, _, _] => unreachable!(),
|
Fix incorrect non-exhaustive matching for fixed length vecs
Code like this is fixed now:
```
fn foo(p: [u8, ..4]) {
match p {
[a, b, c, d] => {}
};
}
```
Invalid constructors are not reported as errors yet:
```
fn foo(p: [u8, ..4]) {
match p {
[_, _, _] => {} // this should be error
[_, _, _, _, _, .._] => {} // and this
_ => {}
}
}
```
Issue #8311 is partially fixed by this commit. Fixed-length arrays in
let statement are not yet allowed:
```
let [a, b, c] = [1, 2, 3]; // still fails
```
2013-08-07 13:07:24 -05:00
|
|
|
}
|
|
|
|
match x {
|
|
|
|
[.._] => (),
|
|
|
|
}
|
|
|
|
match x {
|
|
|
|
[_, _, _, .._] => (),
|
|
|
|
}
|
|
|
|
match x {
|
|
|
|
[a, b, c] => {
|
|
|
|
assert_eq!(1, a);
|
|
|
|
assert_eq!(2, b);
|
|
|
|
assert_eq!(3, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
a();
|
|
|
|
}
|