blob: e76c1cb45dd4e0e8bdf03ad5c74d27e6df032a5e [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