2016-11-29 01:10:26 -06:00
|
|
|
#![deny(unreachable_patterns)]
|
2015-03-26 20:34:27 -05:00
|
|
|
|
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() {
|
2015-01-31 10:23:42 -06:00
|
|
|
let v = [1, 2, 3];
|
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 v {
|
|
|
|
[_, _, _] => {}
|
|
|
|
[_, _, _] => {} //~ ERROR unreachable pattern
|
|
|
|
}
|
|
|
|
match v {
|
|
|
|
[_, 1, _] => {}
|
|
|
|
[_, 1, _] => {} //~ ERROR unreachable pattern
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
a();
|
|
|
|
}
|