1//
2// To compile this file, type:
3//
4// g++ -c -g test44-anon-struct-union-v1.cc
5//
6//
7// This test modifies the type of the S0::m0 data member from the
8// anonymous union to a native type. The resulting change report must
9// refer to the anonymous union by using its flat representation,
10// rather than just "__anonymous_union__".
11
12struct S0
13{
14  int m0;
15  int m1;
16};
17
18void
19foo(S0*)
20{}
21