summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-88803-call-expr-method.fixed
blob: 19b96ecf3fc3adc5d937164fb2d7514072fa9ac9 (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]
    );
}