Files
clang-p2996/clang/test/PCH/Inputs/cxx-method.h
Richard Smith 1c33fe8fea Store on the CXXRecordDecl whether the class has, or would have, a copy
constructor/assignment operator with a const-qualified parameter type. The
prior method for determining this incorrectly used overload resolution.

llvm-svn: 168775
2012-11-28 06:23:12 +00:00

10 lines
101 B
C

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