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-22 18:42:32 -06:00
LL | foo(bar(;
| ^ unclosed delimiter
2019-03-09 06:03:44 -06:00
LL |
2018-08-14 20:04:20 -05: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`.