Lines Matching defs:in
21 [3] 2, // expected-warning{{use of GNU 'missing =' extension in designator}}
33 .a = 4.0, // expected-error{{field designator 'a' does not refer to any field in type 'struct point'}}
43 [2].z = 3.0, // expected-error{{field designator 'z' does not refer to any field in type 'struct point'}}
73 [2].top_left = { { .x = 1.1 } }, // expected-error{{designator in initializer for scalar type}}
98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = {
99 [0].in.x = 2, &zz[0].in.x, &zz[0].in,
100 0, &anint, &zz[1].in,
101 [3].in = { .y = &anint, .x = 17 },
102 [7].in.y = &anint, &zz[0].in,
103 [4].in.y = &anint, [5].in.x = 12
188 const union wibble wobble2 = { .arr2 = {4, 5, 6}, 7 }; // expected-warning{{excess elements in union initializer}}
329 // Check initializer override warnings overriding a character in a string