blob: 0605b24b1c500e349ba2ad1f9431d5b0a50699cb [file] [log] [blame]
Douglas Gregorc9e012a2009-01-29 17:44:32 +00001// RUN: clang %s -emit-llvm -o -
2// XFAIL
3struct foo {
4 void *a;
5 int b;
6};
7
8union { int i; float f; } u = { };
9
10int main(int argc, char **argv)
11{
12 union { int i; float f; } u2 = { };
13 static struct foo foo = {
14 .b = 1024,
15 };
16}
17