fehler127: WTF - autobreak expects this to compile.
[libfirm] / ir / be / test / fehler123.c
1 int x = 23;
2
3 int main(void)
4 {
5     int    a = x + 19;
6     double b = a;
7     x = b;
8     printf("%d\n", x);
9     return 0;
10 }