1 // Compile this with: 2 // g++ -g -Wall -shared -o libtest37-union-v0.so test37-union-v0.cc 3 4 union some_union_type 5 { 6 int m0; 7 char m1; 8 }; 9 10 void foo(some_union_type *)11 foo(some_union_type*) 12 { 13 } 14