mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 11:23:03 +00:00
14 lines
227 B
Plaintext
14 lines
227 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 1 previous error
|
|
|