mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 17:53:56 +00:00
slice_patterns: adjust error codes
This commit is contained in:
parent
c41443a2b7
commit
0aebb08115
@ -17,8 +17,6 @@ Ensure that the pattern is consistent with the size of the matched
|
||||
array. Additional elements can be matched with `..`:
|
||||
|
||||
```
|
||||
#![feature(slice_patterns)]
|
||||
|
||||
let r = &[1, 2, 3, 4];
|
||||
match r {
|
||||
&[a, b, ..] => { // ok!
|
||||
|
@ -4,8 +4,6 @@ matched array.
|
||||
Example of erroneous code:
|
||||
|
||||
```compile_fail,E0528
|
||||
#![feature(slice_patterns)]
|
||||
|
||||
let r = &[1, 2];
|
||||
match r {
|
||||
&[a, b, c, rest @ ..] => { // error: pattern requires at least 3
|
||||
@ -19,8 +17,6 @@ Ensure that the matched array has at least as many elements as the pattern
|
||||
requires. You can match an arbitrary number of remaining elements with `..`:
|
||||
|
||||
```
|
||||
#![feature(slice_patterns)]
|
||||
|
||||
let r = &[1, 2, 3, 4, 5];
|
||||
match r {
|
||||
&[a, b, c, rest @ ..] => { // ok!
|
||||
|
@ -18,8 +18,6 @@ Ensure that the pattern is consistent with the size of the matched
|
||||
array. Additional elements can be matched with `..`:
|
||||
|
||||
```
|
||||
#![feature(slice_patterns)]
|
||||
|
||||
let r = &[1, 2, 3, 4];
|
||||
match r {
|
||||
&[a, b, ..] => { // ok!
|
||||
|
Loading…
Reference in New Issue
Block a user