summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-or-init.rs
blob: c0d6c9c2739b2a49921edb37af5f8abf5d97e8ab (plain)
1
2
3
4
5
6
fn main() {
    let i: isize;

    println!("{}", false || { i = 5; true });
    println!("{}", i); //~ ERROR borrow of possibly uninitialized variable: `i`
}