Files
rust/tests/ui/diagnostic-width/long-E0529.stderr

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

13 lines
515 B
Plaintext
Raw Normal View History

2025-02-18 01:39:08 +00:00
error[E0529]: expected an array or slice, found `(..., ..., ..., ...)`
--> $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 `(..., ..., ..., ...)`
|
= 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`.