summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-or-init.rs
blob: 81b0b80bf11b5da368505ae5ee9d407c2bd4395c (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`
}