blob: 1ef5cf32e0b78e7340232a24f1d03d1963ef1bfb [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3int foo(int len, char arr[][len], int X) {
4 return arr[X][0];
5}