rust/src/test/ui/resolve/token-error-correct.stderr

21 lines
527 B
Plaintext
Raw Normal View History

error: incorrect close delimiter: `}`
2018-12-25 09:56:47 -06:00
--> $DIR/token-error-correct.rs:6:1
|
LL | fn main() {
| - close delimiter possibly meant for this
2018-02-22 18:42:32 -06:00
LL | foo(bar(;
2018-08-26 19:22:36 -05:00
| - un-closed delimiter
2019-03-09 06:03:44 -06:00
LL |
2018-08-14 20:04:20 -05:00
LL | }
| ^ incorrect close 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`.