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
Plaintext
Raw Normal View History

error: mismatched closing delimiter: `)`
--> $DIR/token-error-correct-2.rs:4:12
|
2018-02-23 00:42:32 +00:00
LL | if foo {
| ^ unclosed delimiter
2019-03-09 12:03:44 +00:00
LL |
LL | )
| ^ mismatched closing delimiter
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
|
2018-02-23 00:42:32 +00:00
LL | if foo {
| ^^^ not found in this scope
error: aborting due to 2 previous errors
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0425`.