mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
7fce68649a
Doesn't quite work (attempt to suppress warning for return a = 3, 5; failed).
50 lines
557 B
R
50 lines
557 B
R
void printf (string fmt, ...) = #0;
|
|
|
|
int a = 0;
|
|
int b = 0;
|
|
|
|
int
|
|
return_comma()
|
|
{
|
|
return a = 3, 5;
|
|
}
|
|
|
|
int
|
|
test_for_comma ()
|
|
{
|
|
int fail = 1;
|
|
int count = 5;
|
|
int i = -1;
|
|
float j = -1;
|
|
|
|
for (i = 3, j = 5; count-- > 0; ) {
|
|
i += 2;
|
|
j += 3;
|
|
}
|
|
if (i == 13 && j == 20) {
|
|
fail = 0;
|
|
}
|
|
|
|
return fail;
|
|
}
|
|
|
|
int
|
|
test_comma ()
|
|
{
|
|
int fail = 1;
|
|
if (return_comma() == 5) {
|
|
if (a == 3) {
|
|
fail = 0;
|
|
}
|
|
}
|
|
return fail;
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int fail = 0;
|
|
fail |= test_comma ();
|
|
fail |= test_for_comma ();
|
|
return fail;
|
|
}
|