diff options
Diffstat (limited to 'tests/ui/did_you_mean/issue-87830-try-brackets-for-arrays.rs')
-rw-r--r-- | tests/ui/did_you_mean/issue-87830-try-brackets-for-arrays.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/did_you_mean/issue-87830-try-brackets-for-arrays.rs b/tests/ui/did_you_mean/issue-87830-try-brackets-for-arrays.rs new file mode 100644 index 000000000..070ffaa1e --- /dev/null +++ b/tests/ui/did_you_mean/issue-87830-try-brackets-for-arrays.rs @@ -0,0 +1,18 @@ +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 +} |