5 lines
101 B
Rust
5 lines
101 B
Rust
|
fn main() {
|
||
|
let x: bool;
|
||
|
while x { } //! ERROR use of possibly uninitialized variable: `x`
|
||
|
}
|