New testcase

llvm-svn: 13402
This commit is contained in:
Chris Lattner 2004-05-07 18:38:59 +00:00
parent 0a8ee61c51
commit 798b5e4a6f
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
int foo(int len, char arr[][len], int X) {
return arr[X][0];
}