aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/builtin-ptrtomember-ambig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/builtin-ptrtomember-ambig.cpp')
-rw-r--r--test/SemaCXX/builtin-ptrtomember-ambig.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/SemaCXX/builtin-ptrtomember-ambig.cpp b/test/SemaCXX/builtin-ptrtomember-ambig.cpp
new file mode 100644
index 000000000000..7e20af35394b
--- /dev/null
+++ b/test/SemaCXX/builtin-ptrtomember-ambig.cpp
@@ -0,0 +1,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}}
+}
+