17 lines
194 B
Plaintext
17 lines
194 B
Plaintext
[expected_return_code]
|
|
100
|
|
|
|
[code]
|
|
fn main() -> i32 {
|
|
let a = 10;
|
|
|
|
if a == 10 {
|
|
a = 100;
|
|
}
|
|
|
|
if a == 5 {
|
|
a = 0; // Should be skipped
|
|
}
|
|
|
|
return a;
|
|
} |