summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-or-init.rs
blob: 138dbc0a7a847330f685c9d24be11777a793ff43 (plain)
1
2
3
4
5
6
fn main() {
    let i: int;

    log(debug, false || { i = 5; true });
    log(debug, i); //~ ERROR use of possibly uninitialized variable: `i`
}