blob: 7a64a42e3c8aa13195ed5a57ad97d487cf463cc5 [file] [log] [blame]
error: struct literals are not allowed here
--> $DIR/struct-literal-in-if.rs:12:8
|
LL | if Foo {
| ________^
LL | | x: 3
LL | | }.hi() {
| |_____^
|
help: surround the struct literal with parentheses
|
LL | if (Foo {
LL | x: 3
LL | }).hi() {
|
error: aborting due to previous error