2020-01-03 13:40:15 +00:00
|
|
|
error: mismatched closing delimiter: `)`
|
2021-08-27 10:57:28 +00:00
|
|
|
--> $DIR/token-error-correct-2.rs:4:12
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | if foo {
|
2021-08-27 10:57:28 +00:00
|
|
|
| ^ unclosed delimiter
|
2019-03-09 12:03:44 +00:00
|
|
|
LL |
|
|
|
|
LL | )
|
2020-01-03 13:40:15 +00:00
|
|
|
| ^ mismatched closing delimiter
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-01-11 22:18:08 +00:00
|
|
|
error[E0425]: cannot find value `foo` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/token-error-correct-2.rs:4:8
|
2016-11-30 22:35:25 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | if foo {
|
2017-01-11 22:18:08 +00:00
|
|
|
| ^^^ not found in this scope
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2016-11-30 22:35:25 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|