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