Bug in edgfe when taking address of forward declared variable (struct? const?).
[libfirm] / ir / be / test / fehler136.c
1 struct X
2 {
3         int x;
4 };
5
6 extern const struct X bla;
7
8 struct X const* const blub[] = { &bla };
9
10 struct X const bla = { 23 };