Fix typo 'getter' where 'setter' was intended.
[llvm.git] / test / FrontendC / 2009-04-28-UnionArrayCrash.c
blob75851d0f5c01ad6e32c3232d023ea10666ddced9
1 // RUN: %llvmgcc -S %s -o -
2 // PR4082
3 union U {
4 int I;
5 double F;
6 };
8 union U arr[] = { { .I = 4 }, { .F = 123.} };
9 union U *P = &arr[0];