blob: 34652474f3b32f4353474031bd0fd7e9065ee4b0 [file] [log] [blame]
Fariborz Jahanianad3607d2009-10-09 17:09:58 +00001// RUN: clang-cc -fsyntax-only -verify %s -std=c++0x
2
3struct A {};
4
5struct R {
6 operator const A*();
7};
8
9
10struct B : R {
11 operator A*();
12};
13
14struct C : B {
15
16};
17
18
19void foo(C c, int A::* pmf) {
20 // FIXME. Why so many built-in candidates?
21 int i = c->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
Fariborz Jahaniana9cca892009-10-15 17:14:05 +000022 // expected-note {{built-in candidate operator ->* ('struct A const *', 'int const struct A::*')}} \
23 // expected-note {{built-in candidate operator ->* ('struct A const *', 'int struct A::*')}} \
24 // expected-note {{built-in candidate operator ->* ('struct A *', 'int const struct A::*')}} \
25 // expected-note {{built-in candidate operator ->* ('struct A *', 'int struct A::*')}}
Fariborz Jahanianad3607d2009-10-09 17:09:58 +000026}
27