1
Fork 0
rust/tests/ui/resolve/token-error-correct-2.stderr

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

19 lines
465 B
Text
Raw Normal View History

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