constructor/assignment operator with a const-qualified parameter type. The prior method for determining this incorrectly used overload resolution. llvm-svn: 168775
10 lines
101 B
C
10 lines
101 B
C
struct S {
|
|
void m(int x);
|
|
|
|
S();
|
|
S(const S&);
|
|
|
|
operator const char*();
|
|
operator char*();
|
|
};
|