rust/src/test/compile-fail/liveness-while-cond.rs

5 lines
101 B
Rust
Raw Normal View History

fn main() {
let x: bool;
while x { } //! ERROR use of possibly uninitialized variable: `x`
}