blob: 50afad902c68cda398b2c8975a06a1685dfb37f8 [file] [log] [blame]
main() {
int b = 1;
int c = 2;
int d = 3;
int e = 4;
int f = 5;
int g = 6;
int as = 7;
a(b < c, d < e, f < g, as >>> (1));
}
void a(bool x, bool y, bool z1, int z2) {
print("$x $y $z1 $z2");
}