]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/token-error-correct.stderr
bf300ecd781733b4020b65baae83f698ecf345c3
[rust.git] / src / test / ui / resolve / token-error-correct.stderr
1 error: mismatched closing delimiter: `}`
2   --> $DIR/token-error-correct.rs:6:1
3    |
4 LL | fn main() {
5    |           - closing delimiter possibly meant for this
6 LL |     foo(bar(;
7    |            - unclosed delimiter
8 LL |
9 LL | }
10    | ^ mismatched closing delimiter
11
12 error[E0425]: cannot find function `bar` in this scope
13   --> $DIR/token-error-correct.rs:4:9
14    |
15 LL |     foo(bar(;
16    |         ^^^ not found in this scope
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0425`.