summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-and-init.rs
blob: 7deafdce36305c12a6cf42bbf3af2f62ba6dc0e4 (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`
}