Partially implement -Wdeprecated-declarations.
[cparser] / parsetest / init7.c
1 struct S {
2         int a, b;
3 } glob;
4
5 struct S *globptr  = &glob;
6 struct S *globptr2 = &*&glob;
7 int      *intptr   = &*&glob.b;
8 int      *intp2    = &(&glob + 3)->b;
9
10 int arr[10];
11 int *p = arr + 4;
12
13 int main(void)
14 {
15         return 0;
16 }