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

error: aborting due to 1 previous error

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