summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-if-no-else.rs
blob: 534d771be1dfaf02bd6a73cf9e429b47146e5875 (plain)
1
2
3
4
5
6
fn foo(x: isize) { println!("{}", x); }

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