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

7 lines
92 B
Plaintext

func void test()
{
int[3] x = { 1, 2, 3 };
int[] z = &x;
z[1];
// z.size();
}