Clang Project

clang_source_code/test/Import/conversion-decl/Inputs/F.cpp
1class Y {
2  int M;
3};
4
5class X {
6  int N, M;
7
8public:
9  operator Y();
10};
11