Clang Project

clang_source_code/test/Import/conflicting-struct/Inputs/S2.cpp
1class U {
2  int b;
3};
4
5class T {
6  U u;
7};
8