7 lines
77 B
Plaintext
7 lines
77 B
Plaintext
unit bad_uninit;
|
|
|
|
fn main() -> i32 {
|
|
var value: i32;
|
|
return value;
|
|
}
|