blob: 7fd7ffc94a513d20401223fdb0a007fcc375a568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error: invalid struct literal
--> $DIR/method-call-on-struct-literal-in-if-condition.rs:10:8
|
LL | if Example { a: one(), }.is_pos() {
| ^^^^^^^^^^^^^^^^^^^^^
|
help: you might need to surround the struct literal in parentheses
|
LL | if (Example { a: one(), }).is_pos() {
| + +
error: aborting due to previous error
|