about summary refs log tree commit diff
path: root/src/test/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui')
-rw-r--r--src/test/ui/typeck/issue-88803-call-expr-method.stderr11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/ui/typeck/issue-88803-call-expr-method.stderr b/src/test/ui/typeck/issue-88803-call-expr-method.stderr
index 4b7ea95dee2..dd717ed9416 100644
--- a/src/test/ui/typeck/issue-88803-call-expr-method.stderr
+++ b/src/test/ui/typeck/issue-88803-call-expr-method.stderr
@@ -2,10 +2,13 @@ error[E0615]: attempted to take value of method `unwrap` on type `Option<{intege
   --> $DIR/issue-88803-call-expr-method.rs:7:12
    |
 LL |         (a.unwrap)()
-   |         ---^^^^^^-
-   |         |  |
-   |         |  method, not a field
-   |         help: remove wrapping parentheses to call the method
+   |            ^^^^^^ method, not a field
+   |
+help: remove wrapping parentheses to call the method
+   |
+LL -         (a.unwrap)()
+LL +         a.unwrap()
+   | 
 
 error: aborting due to previous error