summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/token-error-correct-2.stderr
blob: cca9f2dc88ca0d8dcda92a045274db8c481792e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: mismatched closing delimiter: `)`
  --> $DIR/token-error-correct-2.rs:4:12
   |
LL |     if foo {
   |            ^ unclosed delimiter
LL |
LL |     )
   |     ^ mismatched closing delimiter

error[E0425]: cannot find value `foo` in this scope
  --> $DIR/token-error-correct-2.rs:4:8
   |
LL |     if foo {
   |        ^^^ not found in this scope

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0425`.