blob: 98aee727b4ecd45c3ca2ced955edbeeb630056e1 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3union foo {
4 struct { char A, B; } X;
5 int C;
6};
7
8union foo V = { {1, 2} };