mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
error: this is a block expression, not an array
|
|
--> $DIR/issue-87830-try-brackets-for-arrays.rs:3:22
|
|
|
|
|
LL | const FOO: [u8; 3] = {
|
|
| ______________________^
|
|
LL | |
|
|
LL | | 1, 2, 3
|
|
LL | | };
|
|
| |_^
|
|
|
|
|
help: to make an array, use square brackets instead of curly braces
|
|
|
|
|
LL ~ const FOO: [u8; 3] = [
|
|
LL |
|
|
LL | 1, 2, 3
|
|
LL ~ ];
|
|
|
|
|
|
|
error: this is a block expression, not an array
|
|
--> $DIR/issue-87830-try-brackets-for-arrays.rs:8:24
|
|
|
|
|
LL | const BAR: [&str; 3] = {"one", "two", "three"};
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: to make an array, use square brackets instead of curly braces
|
|
|
|
|
LL | const BAR: [&str; 3] = ["one", "two", "three"];
|
|
| ~ ~
|
|
|
|
error: this is a block expression, not an array
|
|
--> $DIR/issue-87830-try-brackets-for-arrays.rs:12:5
|
|
|
|
|
LL | {1, 2, 3};
|
|
| ^^^^^^^^^
|
|
|
|
|
help: to make an array, use square brackets instead of curly braces
|
|
|
|
|
LL | [1, 2, 3];
|
|
| ~ ~
|
|
|
|
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
|
|
--> $DIR/issue-87830-try-brackets-for-arrays.rs:17:6
|
|
|
|
|
LL | 1, 2, 3
|
|
| ^ expected one of `.`, `;`, `?`, `}`, or an operator
|
|
|
|
error: aborting due to 4 previous errors
|
|
|