Files
rust/tests/ui/parser/better-expected.stderr

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

15 lines
373 B
Plaintext
Raw Normal View History

error: expected `;` or `]`, found `3`
--> $DIR/better-expected.rs:2:19
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | let x: [isize 3];
| ^ expected `;` or `]`
|
= note: you might have meant to write a slice or array type
help: you might have meant to use `;` as the separator
|
LL | let x: [isize ;3];
| +
2018-10-20 23:36:17 +03:00
error: aborting due to 1 previous error
2018-10-20 23:36:17 +03:00