summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/borrowck-if-with-else.rs
blob: 69d450c59891a9b1258a42ed7e3908aa0d35ea9d (plain)
1
2
3
4
5
6
7
8
9
10
11
fn foo(x: isize) { println!("{}", x); }

fn main() {
    let x: isize;
    if 1 > 2 {
        println!("whoops");
    } else {
        x = 10;
    }
    foo(x); //~ ERROR E0381
}