blob: d1c122d79b481339447acfc08cae3f6c3baf0262 [file] [log] [blame]
Stuart Hastings12b8bc12010-06-14 18:37:04 +00001// RUN: %llvmgcc -S %s
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}