aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/2009-03-17-dbg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/2009-03-17-dbg.cpp')
-rw-r--r--test/CodeGenCXX/2009-03-17-dbg.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGenCXX/2009-03-17-dbg.cpp b/test/CodeGenCXX/2009-03-17-dbg.cpp
new file mode 100644
index 000000000000..e2e6c5a2dd29
--- /dev/null
+++ b/test/CodeGenCXX/2009-03-17-dbg.cpp
@@ -0,0 +1,15 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -g
+
+template <typename T1,typename T2>
+inline void f(const T1&,const T2&) { }
+
+template <typename T1,typename T2,void F(const T1&,const T2&)>
+struct A {
+ template <typename T> void g(T& i) { }
+};
+
+int main() {
+ int i;
+ A<int,int,f> a;
+ a.g(i);
+}