summaryrefslogtreecommitdiff
path: root/test/SemaTemplate/template-id-printing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaTemplate/template-id-printing.cpp')
-rw-r--r--test/SemaTemplate/template-id-printing.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/SemaTemplate/template-id-printing.cpp b/test/SemaTemplate/template-id-printing.cpp
new file mode 100644
index 0000000000000..13250943e92c9
--- /dev/null
+++ b/test/SemaTemplate/template-id-printing.cpp
@@ -0,0 +1,13 @@
+// RUN: clang-cc -fsyntax-only -ast-print %s | FileCheck %s
+namespace N {
+ template<typename T, typename U> void f(U);
+ template<int> void f();
+}
+
+void g() {
+ // CHECK: N::f<int>(3.14
+ N::f<int>(3.14);
+
+ // CHECK: N::f<double>
+ void (*fp)(int) = N::f<double>;
+}