summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr')
-rw-r--r--tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr b/tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr
index 7fd7ffc94..dedbad909 100644
--- a/tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr
+++ b/tests/ui/parser/method-call-on-struct-literal-in-if-condition.stderr
@@ -4,7 +4,7 @@ error: invalid struct literal
LL | if Example { a: one(), }.is_pos() {
| ^^^^^^^^^^^^^^^^^^^^^
|
-help: you might need to surround the struct literal in parentheses
+help: you might need to surround the struct literal with parentheses
|
LL | if (Example { a: one(), }).is_pos() {
| + +