rust/tests/ui/resolve/token-error-correct.stderr

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

21 lines
535 B
Plaintext
Raw Normal View History

error: mismatched closing delimiter: `}`
--> $DIR/token-error-correct.rs:4:12
|
LL | fn main() {
| - closing delimiter possibly meant for this
2018-02-23 03:42:32 +03:00
LL | foo(bar(;
| ^ unclosed delimiter
2019-03-09 15:03:44 +03:00
LL |
2018-08-14 18:04:20 -07:00
LL | }
| ^ mismatched closing delimiter
error[E0425]: cannot find function `bar` in this scope
--> $DIR/token-error-correct.rs:4:9
|
LL | foo(bar(;
| ^^^ not found in this scope
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0425`.