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