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