summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-88803-call-expr-method.rs
blob: a06199466374974719a9ad454f6118c702826665 (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix

fn main() {
    let a = Some(42);
    println!(
        "The value is {}.",
        (a.unwrap)() //~ERROR [E0615]
    );
}