mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
344d429134
Turns out array inits are very strict about types (bug?).
6 lines
89 B
R
6 lines
89 B
R
double a;
|
|
int b[] = {1.0d};
|
|
int main ()
|
|
{
|
|
return 1; // test fails if compile succeeds
|
|
}
|