mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
12 lines
116 B
C++
12 lines
116 B
C++
// RUN: clang-cc -emit-llvm -o - %s
|
|
|
|
struct A {
|
|
union {
|
|
int a;
|
|
void* b;
|
|
};
|
|
|
|
A() : a(0) { }
|
|
};
|
|
|
|
A a;
|