1// Compile this with: 2// g++ -g -Wall -shared -o libtest38-union-v0.so test38-union-v0.cc 3 4struct S 5{ 6 int S_member0; 7 int S_member1; 8}; 9 10union some_union_type 11{ 12 int m0; 13 char m1; 14 S m2; 15}; 16 17void 18foo(some_union_type*) 19{ 20} 21