f(void)1 int f(void) 2 { 3 static _Complex double t; 4 int i, j; 5 for(i = 0;i<2;i++) 6 for(j = 0;j<2;j++) 7 t = .5 * 1.0; 8 return t; 9 } 10