blob: e00a3ce9452931920316b1d5bdab1fba38404116 [file] [log] [blame]
union X {
void *B;
};
union X foo() {
union X A;
A.B = (void*)123;
return A;
}