fn main() -> i32 { for i in 0..1 { let j = i; if i != j { return 1; } } return 0; }