rust/src/test/ui/parser/struct-literal-in-if.stderr

19 lines
340 B
Plaintext
Raw Normal View History

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