Partially implement -Wdeprecated-declarations.
[cparser] / parsetest / constexpr2.c
1 struct foo {
2         int a;
3         int b;
4 };
5 struct foo bar = { (int) &((struct foo*)0)->b, 0 };
6
7 int main(void) {
8         return 0;
9 }