mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
6ce99afa5b
Local initializers are handled by regular assignments
6 lines
85 B
R
6 lines
85 B
R
double a;
|
|
int b = 1.0d;
|
|
int main ()
|
|
{
|
|
return 1; // test fails if compile succeeds
|
|
}
|