switch is still broken, copying over cparser testcase since noone runs the cparser...
[libfirm] / ir / be / test / fehler021.c
1 struct blup {
2         char str[16];
3         int dummy;
4 };
5
6 struct blup dumm[] = { { "Hallo" }, { "Welt" } };
7
8 int main() {
9         puts(dumm[0].str);
10         puts(dumm[1].str);
11         return 0;
12 }