11 lines
185 B
Text
11 lines
185 B
Text
/* Test that if conditions must be boolean */
|
|
class Main {
|
|
void main() {
|
|
if (84 / 2) {
|
|
write(1);
|
|
writeln();
|
|
}
|
|
write(2);
|
|
writeln();
|
|
}
|
|
}
|