rust/tests/ui/parser/struct-literal-in-match-discriminant.stderr

19 lines
355 B
Plaintext
Raw Normal View History

error: struct literals are not allowed here
--> $DIR/struct-literal-in-match-discriminant.rs:6:11
|
LL | match Foo {
| ___________^
LL | | x: 3
LL | | } {
| |_____^
|
2019-05-02 17:53:09 -05:00
help: surround the struct literal with parentheses
|
LL ~ match (Foo {
LL | x: 3
LL ~ }) {
|
2018-10-20 15:36:17 -05:00
error: aborting due to previous error