aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/variable-array.c
blob: 280539fa897ca735208b7d5a0713a9a156f6ea23 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -emit-llvm < %s | grep puts

int a(int x)
{
  int (*y)[x];
  return sizeof(*(puts("asdf"),y));
}