1 /* Test diagnostics for various bad initializers. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99" } */
7 void g(void) = f
; /* { dg-error "error: function 'g' is initialized like a variable" } */
10 int a
= 1; /* { dg-error "error: parameter 'a' is initialized" } */
12 struct s x
= { 0 }; /* { dg-error "error: variable 'x' has initializer but incomplete type" } */
13 /* { dg-warning "excess elements|near init" "excess" { target *-*-* } 12 } */
14 /* { dg-error "storage size" "size" { target *-*-* } 12 } */
19 char t
[1] = "xy"; /* { dg-warning "warning: initializer-string for array of chars is too long" } */
20 char t1
[1] = { "xy" }; /* { dg-warning "warning: initializer-string for array of chars is too long" } */
21 char u
[1] = { "x", "x" }; /* { dg-error "error: excess elements in char array initializer" } */
22 /* { dg-error "near init" "near" { target *-*-* } 21 } */
24 int i
= { }; /* { dg-error "error: empty scalar initializer" } */
25 /* { dg-error "near init" "near" { target *-*-* } 24 } */
29 int k
= { 1, 2 }; /* { dg-warning "warning: excess elements in scalar initializer" } */
30 /* { dg-warning "near init" "near" { target *-*-* } 29 } */
32 int a1
[1] = { [1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
33 /* { dg-error "near init" "near" { target *-*-* } 32 } */
34 int a2
[1] = { [-1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
35 /* { dg-error "near init" "near" { target *-*-* } 34 } */
36 int a3
[1] = { [0 ... 1] = 0 }; /* { dg-error "error: array index range in initializer exceeds array bounds" } */
37 /* { dg-error "near init" "near" { target *-*-* } 36 } */
38 int a4
[2] = { [1 ... 0] = 0 }; /* { dg-error "error: empty index range in initializer" } */
39 /* { dg-error "near init" "near" { target *-*-* } 38 } */
40 int a5
[2] = { [0 ... 2] = 0 }; /* { dg-error "error: array index range in initializer exceeds array bounds" } */
41 /* { dg-error "near init" "near" { target *-*-* } 40 } */
42 int a6
[2] = { [-1 ... 1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
43 /* { dg-error "near init" "near" { target *-*-* } 42 } */
44 int a7
[] = { [-1 ... 1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
45 /* { dg-error "near init" "near" { target *-*-* } 44 } */