96e14c34d3b1e72089595ef0e72862525c37bd7e
[libfirm] / ir / be / test / multidim-array.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 typedef int arraya[8][8];
5
6 int main()
7 {
8  int i = 0,j = 0;
9  arraya *p;
10  p = (arraya*)calloc(1,sizeof(arraya));
11  (*p)
12          [i]
13          [j] = 1;
14
15  return 0;
16 }