blob: e84c65196dfa0abba792d6b264d53db0eff7e64e [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
struct A {};
struct R {
operator const A*();
};
struct B : R {
operator A*();
};
struct C : B {
};
void foo(C c, int A::* pmf) {
int i = c->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
// expected-note {{built-in candidate operator->*(const struct A *, int A::*)}} \
// expected-note {{built-in candidate operator->*(struct A *, int A::*)}}
}