Files
c3c/test/test_suite/arrays/inferred_subarray.c3

6 lines
114 B
C

fn void main()
{
int[*][*][] x = int[2][1][] { { { 1, 2 } } };
int[*][*][*] y = int[2][1][] { { { 1, 2 } } };
}