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