summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-88803-call-expr-method.stderr
blob: 645c04b87a1fdb3991b21a58db35af897474dee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0615]: attempted to take value of method `unwrap` on type `Option<{integer}>`
  --> $DIR/issue-88803-call-expr-method.rs:7:12
   |
LL |         (a.unwrap)()
   |            ^^^^^^ method, not a field
   |
help: remove wrapping parentheses to call the method
   |
LL -         (a.unwrap)()
LL +         a.unwrap()
   |

error: aborting due to previous error

For more information about this error, try `rustc --explain E0615`.