mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
346 B
Rust
19 lines
346 B
Rust
fn main() {}
|
|
|
|
const FOO: [u8; 3] = {
|
|
//~^ ERROR this is a block expression, not an array
|
|
1, 2, 3
|
|
};
|
|
|
|
const BAR: [&str; 3] = {"one", "two", "three"};
|
|
//~^ ERROR this is a block expression, not an array
|
|
|
|
fn foo() {
|
|
{1, 2, 3};
|
|
//~^ ERROR this is a block expression, not an array
|
|
}
|
|
|
|
fn bar() {
|
|
1, 2, 3 //~ ERROR expected one of
|
|
}
|