2025-02-18 01:39:08 +00:00
|
|
|
error[E0529]: expected an array or slice, found `(..., ..., ..., ...)`
|
2025-02-11 20:38:58 +08:00
|
|
|
--> $DIR/long-E0529.rs:9:9
|
2025-02-18 01:16:16 +00:00
|
|
|
|
|
|
|
|
|
LL | let [] = x;
|
2025-02-18 01:39:08 +00:00
|
|
|
| ^^ pattern cannot match with input type `(..., ..., ..., ...)`
|
|
|
|
|
|
|
2025-02-11 20:38:58 +08:00
|
|
|
= note: the full name for the type has been written to '$TEST_BUILD_DIR/long-E0529.long-type-$LONG_TYPE_HASH.txt'
|
2025-02-18 01:39:08 +00:00
|
|
|
= note: consider using `--verbose` to print the full type name to the console
|
2025-02-18 01:16:16 +00:00
|
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0529`.
|