hanchenye-llvm-project/llvm/test/Regression/CFrontend/2002-07-30-SubregSetAsserti...

11 lines
86 B
C

union X {
void *B;
};
union X foo() {
union X A;
A.B = (void*)123;
return A;
}