2020-03-30 12:34:16 -05:00
|
|
|
error[E0730]: cannot pattern-match on an array without a fixed length
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/E0730.rs:3:9
|
2019-05-31 16:27:26 -05:00
|
|
|
|
|
2020-03-30 12:34:16 -05:00
|
|
|
LL | [1, 2, ..] => true,
|
|
|
|
| ^^^^^^^^^^
|
2019-05-31 16:27:26 -05:00
|
|
|
|
2021-08-27 11:04:57 -05:00
|
|
|
error: aborting due to previous error
|
2019-05-31 16:27:26 -05:00
|
|
|
|
2020-03-30 12:34:16 -05:00
|
|
|
For more information about this error, try `rustc --explain E0730`.
|