summaryrefslogtreecommitdiff
path: root/test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp')
-rw-r--r--test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp b/test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp
index 2ffdd9579ecd..8212a125be60 100644
--- a/test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp
+++ b/test/CXX/temp/temp.decls/temp.fct/temp.func.order/p3.cpp
@@ -1,4 +1,5 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
+// expected-no-diagnostics
namespace DeduceVsMember {
template<typename T>
@@ -14,3 +15,15 @@ namespace DeduceVsMember {
float& ir = (xi == xf);
}
}
+
+namespace OrderWithStaticMember {
+ struct A {
+ template<class T> int g(T**, int=0) { return 0; }
+ template<class T> static int g(T*) { return 1; }
+ };
+ void f() {
+ A a;
+ int **p;
+ a.g(p);
+ }
+}