mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 16:18:54 -04:00
12 lines
137 B
C
12 lines
137 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
|
|
union X {
|
|
void *B;
|
|
};
|
|
|
|
union X foo() {
|
|
union X A;
|
|
A.B = (void*)123;
|
|
return A;
|
|
}
|