rust/src/test/compile-fail/liveness-and-init.rs

7 lines
146 B
Rust
Raw Normal View History

fn main() {
let i: int;
log(debug, false && { i = 5; true });
log(debug, i); //~ ERROR use of possibly uninitialized variable: `i`
}