1// Arrays with unsized dimensions in dimensions after the first one are illegal in function parameter lists
2
3void func(int a[1][]) {
4}
5