summaryrefslogtreecommitdiff
path: root/clang/test/CXX/over/over.match/over.match.best/p1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CXX/over/over.match/over.match.best/p1.cpp')
-rw-r--r--clang/test/CXX/over/over.match/over.match.best/p1.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/test/CXX/over/over.match/over.match.best/p1.cpp b/clang/test/CXX/over/over.match/over.match.best/p1.cpp
new file mode 100644
index 0000000..5c315a7
--- /dev/null
+++ b/clang/test/CXX/over/over.match/over.match.best/p1.cpp
@@ -0,0 +1,16 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+template<typename T> int &f0(T*, int);
+float &f0(void*, int);
+
+void test_f0(int* ip, void *vp) {
+ // One argument is better...
+ int &ir = f0(ip, 0);
+
+ // Prefer non-templates to templates
+ float &fr = f0(vp, 0);
+}
+
+// Partial ordering of function template specializations will be tested
+// elsewhere
+// FIXME: Initialization by user-defined conversion is tested elsewhere