testcase for sideeffects problems
[cparser] / parsetest / shouldfail / init8.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    = ((int*) ((short) &intptr));
9
10 int main(void)
11 {
12         return 0;
13 }