rust/src/test/ui/parser/match-arrows-block-then-binop.stderr
Esteban Küber e0cef5cf40 fix typo
2019-05-02 15:53:09 -07:00

15 lines
301 B
Plaintext

error: expected pattern, found `+`
--> $DIR/match-arrows-block-then-binop.rs:5:9
|
LL | } + 5
| ^ expected pattern
help: parentheses are required to parse this as an expression
|
LL | 0 => ({
LL | 0
LL | }) + 5
|
error: aborting due to previous error