mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
error: mismatched closing delimiter: `)`
|
|
--> $DIR/token-error-correct-2.rs:4:12
|
|
|
|
|
LL | if foo {
|
|
| ^ unclosed delimiter
|
|
LL |
|
|
LL | )
|
|
| ^ mismatched closing delimiter
|
|
|
|
error[E0425]: cannot find value `foo` in this scope
|
|
--> $DIR/token-error-correct-2.rs:4:8
|
|
|
|
|
LL | if foo {
|
|
| ^^^ not found in this scope
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|