Lines Matching full:static
6 static struct foo t = (struct foo){0,0};
7 static struct foo t1 = __builtin_choose_expr(0, (struct foo){0,0}, (struct foo){0,0});
8 static struct foo t2 = {0,0};
9 static struct foo t3 = t2; // expected-error {{initializer element is not a compile-time constant}}
10 static int *p = (int []){2,4};
11 static int x = (int){1};
13 static int *p2 = (int []){2,x}; // expected-error {{initializer element is not a compile-time constant}}
14 static long *p3 = (long []){2,"x"}; // expected-warning {{incompatible pointer to integer conversion initializing 'long' with an expression of type 'char [2]'}}
17 static cache_t clo_I1_cache = ((cache_t) { } ); // expected-warning{{use of GNU empty initializer extension}}
20 static Test* ll = &(Test) {0,0};