mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
225 B
Plaintext
14 lines
225 B
Plaintext
error: expected `;`, found `[`
|
|
--> $DIR/suggest-semicolon-before-array.rs:8:5
|
|
|
|
|
LL | [1, 3]
|
|
| ^
|
|
|
|
|
help: consider adding `;` here
|
|
|
|
|
LL | foo();
|
|
| +
|
|
|
|
error: aborting due to previous error
|
|
|