llvm-for-llvmta/tools/clang/test/PCH/Inputs/cxx-method.h

10 lines
101 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
struct S {
void m(int x);
S();
S(const S&);
operator const char*();
operator char*();
};