xref: /llvm-project/clang/test/PCH/Inputs/cxx-method.h (revision 1c33fe8feae103191a3cd75e371d80032ad5f607)
1 struct S {
2   void m(int x);
3 
4   S();
5   S(const S&);
6 
7   operator const char*();
8   operator char*();
9 };
10