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