hanchenye-llvm-project/clang/test/PCH/Inputs/cxx-method.h

10 lines
101 B
C

struct S {
void m(int x);
S();
S(const S&);
operator const char*();
operator char*();
};