2019-04-14 17:09:03 -07:00
|
|
|
error: struct literals are not allowed here
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/struct-literal-in-match-discriminant.rs:6:11
|
|
|
|
|
|
2019-04-14 17:09:03 -07:00
|
|
|
LL | match Foo {
|
|
|
|
| ___________^
|
|
|
|
LL | | x: 3
|
|
|
|
LL | | } {
|
|
|
|
| |_____^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-05-02 15:53:09 -07:00
|
|
|
help: surround the struct literal with parentheses
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL ~ match (Foo {
|
2019-04-14 17:09:03 -07:00
|
|
|
LL | x: 3
|
2021-06-21 19:07:19 -07:00
|
|
|
LL ~ }) {
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2019-04-14 17:09:03 -07:00
|
|
|
error: aborting due to previous error
|
2019-04-18 23:58:57 +03:00
|
|
|
|