xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2010-06-11-SaveExpr.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 // Test case by Eric Postpischil!
3 void foo(void)
4 {
5   char a[1];
6   int t = 1;
7   ((char (*)[t]) a)[0][0] = 0;
8 }
9