7 lines
81 B
Plaintext
7 lines
81 B
Plaintext
unit bad_cast;
|
|
|
|
fn main() -> i32 {
|
|
let x: i32 = true as i32;
|
|
return x;
|
|
}
|