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