Files
clang-p2996/clang/test/SemaCXX/builtin-ptrtomember-ambig.cpp
Richard Smith 70f59b5bbc When diagnosing an ambiguity, only note the candidates that contribute
to the ambiguity, rather than noting all viable candidates.
2019-10-24 14:58:29 -07:00

25 lines
471 B
C++

// 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 struct A::*)}} \
// expected-note {{built-in candidate operator->*(struct A *, int struct A::*)}}
}