Home | History | Annotate | Download | only in dcl.array

Lines Matching full:array

4 // which the bound was specified, an omitted array bound is taken to be the
9 extern "C" int array[];
10 void declare() { extern int array[100]; }
11 int value1 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
12 extern "C" int array[];
13 int value2 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
17 extern "C" int array[];
19 { extern int array[100]; }
20 extern int array[];
21 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
26 void declare() { extern int array[100]; }
27 extern int array[];
28 int value = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
33 { extern int array[100]; }
34 extern int array[];
35 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
40 extern int array[];
42 extern int array[100];
43 int x = sizeof(array);
45 int y = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
50 extern int array[100];
51 extern int array[];
52 int x = sizeof(array);
58 extern int array[100];
60 extern int array[];
61 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
63 int y = sizeof(array);
64 extern int array[];
65 int z = sizeof(array);
70 extern int array[100];
72 extern int array[];
73 int x = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
75 int y = sizeof(array);
76 extern int array[];
77 int z = sizeof(array);
81 extern int array[];
83 extern int array[100];
84 int x = sizeof(array);
86 int y = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
87 extern int array[];
88 int z = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}