xref: /aosp_15_r20/external/clang/test/PCH/Inputs/cxx-method.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
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