summaryrefslogtreecommitdiff
path: root/test/FrontendC/2004-05-07-VarArrays.c
blob: 3a39c4fe63aa9f9845df5e543f3bcdfca94fc63d (plain)
1
2
3
4
5
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null

int foo(int len, char arr[][len], int X) {
  return arr[X][0];
}