fehler55
[libfirm] / ir / be / test / fehler55.c
1 typedef struct sv SV;
2
3 struct sv {
4 };
5
6 typedef struct hek HEK;
7 struct hek {
8         char    hek_key[1];
9 };
10
11 int main() {
12         HEK hekimek;
13         (*(SV**) hekimek.hek_key) = (SV*) -2;
14         return 0;
15 }