7 lines
116 B
Rust
7 lines
116 B
Rust
fn f() -> int {
|
|
let x: int;
|
|
return x; //~ ERROR use of possibly uninitialized variable: `x`
|
|
}
|
|
|
|
fn main() { f(); }
|