aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/builtin-ptrtomember-ambig.cpp
blob: 7e20af35394b82eb3047f902d73434700872953c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: clang-cc -fsyntax-only -verify %s -std=c++0x

struct A {};

struct R {
    operator const A*();
};


struct B  : R {
    operator A*();
};

struct C : B {

};


void foo(C c, int A::* pmf) {
       				// FIXME. Why so many built-in candidates?
	int i = c->*pmf; 	// expected-error {{use of overloaded operator '->*' is ambiguous}} \
				// expected-note 40 {{built-in candidate operator ->* ('struct A}}
}