rust/tests/ui/error-codes/E0730.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
266 B
Plaintext
Raw Normal View History

2020-03-30 17:34:16 +00:00
error[E0730]: cannot pattern-match on an array without a fixed length
--> $DIR/E0730.rs:3:9
|
2020-03-30 17:34:16 +00:00
LL | [1, 2, ..] => true,
| ^^^^^^^^^^
error: aborting due to 1 previous error
2020-03-30 17:34:16 +00:00
For more information about this error, try `rustc --explain E0730`.