summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-89044-wrapped-expr-method.fixed
blob: 0a3086a345dda10f263f8071485174c34dd780e7 (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]
    );
}