minix/external/bsd/llvm/dist/clang/test/PCH/Inputs/cxx-method.h

10 lines
101 B
C
Raw Normal View History

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