blob: 7980b2eb91b1a8fbe2b9dcfa51d7f844349ca977 [file] [log] [blame]
main() {
int b = 1;
int c = 2;
int d = 3;
int e = 4;
a(b < c, d < e, 1 >> (2));
}
void a(bool x, bool y, int z) {
print("$x $y $z");
}