Clang Project

clang_source_code/test/Import/conflicting-struct/Inputs/S1.cpp
1class T;
2
3class S {
4  T *t;
5  int a;
6};
7