blob: bb407fdb8a9c6b229ef30e86c07dc1b1931b5d87 [file] [log] [blame]
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`.