blob: 3a39c4fe63aa9f9845df5e543f3bcdfca94fc63d [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
int foo(int len, char arr[][len], int X) {
return arr[X][0];
}