1
Fork 0
rust/src/test/compile-fail/liveness-init-op-equal.rs

9 lines
137 B
Rust
Raw Normal View History

fn test(cond: bool) {
let v: int;
v += 1; //! ERROR use of possibly uninitialized variable: `v`
}
fn main() {
test(true);
}