Files
c3c/test/test_suite/cast/implicit_array_ptr_conv.c3

12 lines
144 B
Plaintext

module test;
fn void test(int[5]* x) {}
fn void test2(int* x) {}
fn int main()
{
int[5][5] y;
test(&y);
test2(&y);
return 0;
}