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

22 lines
539 B
Plaintext
Raw Normal View History

error: incorrect close delimiter: `)`
--> $DIR/token-error-correct-2.rs:16:5
|
16 | ) //~ ERROR: incorrect close delimiter: `)`
| ^
|
note: unclosed delimiter
--> $DIR/token-error-correct-2.rs:14:12
|
14 | if foo {
| ^
error[E0425]: cannot find value `foo` in this scope
--> $DIR/token-error-correct-2.rs:14:8
|
14 | if foo {
| ^^^ not found in this scope
error: aborting due to 2 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0425"