summaryrefslogtreecommitdiff
path: root/test/FrontendC/2010-06-11-SaveExpr.c
blob: d1c122d79b481339447acfc08cae3f6c3baf0262 (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc -S %s
// Test case by Eric Postpischil!
void foo(void)
{
  char a[1];
  int t = 1;
  ((char (*)[t]) a)[0][0] = 0;
}