blob: f6fcb11e368356ac55987ee2790b5cbb10314996 [file]
int main() {
int foo[2][3][4];
int (*bar)[3][4] = foo;
return 0; // Break at this line
}