use global table for atomic type properties
[cparser] / parsetest / init6.c
1 struct { char str[10]; int y; } bla[] = { [13].str = { 1, 2,3 } };
2
3 int main() {
4         return bla[13].str[1] != 2;
5 }