6_7_7_01_abstract_ptr_array_cast.c (97B)
1 int test_main(void) { 2 int b[3] = {0, 0, 42}; 3 void* v = &b; 4 return ((int (*)[3])v)[0][2]; 5 }