Files
doslang-mirror/fec/tests/m2/bad-cast.fe
T

7 lines
81 B
Plaintext

unit bad_cast;
fn main() -> i32 {
let x: i32 = true as i32;
return x;
}