Welcome to mirror list, hosted at ThFree Co, Russian Federation.

builtin-ptrtomember-ambig.cpp « SemaCXX « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32a893dafcef42688b92c788e4b31abf336279e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// RUN: %clang_cc1 -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 {{built-in candidate operator->*(const struct A *, const int struct A::*)}} \
				// expected-note {{built-in candidate operator->*(const struct A *, int struct A::*)}} \
				// expected-note {{built-in candidate operator->*(struct A *, const int struct A::*)}} \
				// expected-note {{built-in candidate operator->*(struct A *, int struct A::*)}}
}