blob: ea3eafc9955320271c1b067bfb07ad4663f81bc5 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -emit-llvm -o - %s
2
3struct A {
4 union {
5 int a;
6 void* b;
7 };
8
9 A() : a(0) { }
10};
11
12A a;