summaryrefslogtreecommitdiff
path: root/test/FrontendC/2005-05-10-GlobalUnionInit.c
blob: 443064c921d59d8b736fc81648cd7c72624eb775 (plain)
1
2
3
4
5
6
// RUN: %llvmgcc %s -S -o -

union A {                    // { uint }
  union B { double *C; } D;
} E = { { (double*)12312 } };