]> git.proxmox.com Git - rustc.git/blame - src/test/ui/typeck/issue-89044-wrapped-expr-method.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / typeck / issue-89044-wrapped-expr-method.stderr
CommitLineData
c295e0f8
XL
1error[E0615]: attempted to take value of method `unwrap` on type `Option<{integer}>`
2 --> $DIR/issue-89044-wrapped-expr-method.rs:7:12
3 |
4LL | (a.unwrap)
5 | ^^^^^^ method, not a field
6 |
7help: use parentheses to call the method
8 |
9LL | (a.unwrap())
10 | ++
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0615`.