1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null 2 3 int foo(int len, char arr[][len], int X) { 4 return arr[X][0]; 5 } 6