]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/token-error-correct-2.stderr
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[rust.git] / tests / ui / resolve / token-error-correct-2.stderr
1 error: mismatched closing delimiter: `)`
2   --> $DIR/token-error-correct-2.rs:4:12
3    |
4 LL |     if foo {
5    |            ^ unclosed delimiter
6 LL |
7 LL |     )
8    |     ^ mismatched closing delimiter
9
10 error[E0425]: cannot find value `foo` in this scope
11   --> $DIR/token-error-correct-2.rs:4:8
12    |
13 LL |     if foo {
14    |        ^^^ not found in this scope
15
16 error: aborting due to 2 previous errors
17
18 For more information about this error, try `rustc --explain E0425`.