1// RUN: %clang_cc1 -emit-llvm %s -o -
2// Test case by Eric Postpischil!
3void foo(void)
4{
5  char a[1];
6  int t = 1;
7  ((char (*)[t]) a)[0][0] = 0;
8}
9