llvm-6502/test/FrontendC/2010-06-11-SaveExpr.c

9 lines
133 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s
// Test case by Eric Postpischil!
void foo(void)
{
char a[1];
int t = 1;
((char (*)[t]) a)[0][0] = 0;
}