For the code ``` int main() { auto p = new int[2][3]; } ``` cppinsight swaps the dimensions ``` int main() { int (*)[3] p = new int [3][2]; } ```