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