You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0528]: pattern requires at least 3 elements but array has 2
--> src/test/compile-fail/E0528.rs:16:10
|
16 | &[a, b, c, rest..] => { //~ ERROR E0528
| ^^^^^^^^^^^^^^^^^
To:
error[E0528]: pattern requires at least 3 elements but array has 2
--> src/test/compile-fail/E0528.rs:16:10
|
16 | &[a, b, c, rest..] => { //~ ERROR E0528
| ^^^^^^^^^^^^^^^^^ pattern cannot match array of 2 elements
The text was updated successfully, but these errors were encountered:
From: src/test/compile-fail/E0528.rs
E0528 needs a span_label, updating it from:
To:
The text was updated successfully, but these errors were encountered: