Files
c3c/test/test_suite/arrays/slice.c3
2021-11-16 17:46:44 +01:00

7 lines
90 B
Plaintext

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