aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2009-03-17-dbg.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-08-19 22:17:09 +0000
committerEric Christopher <echristo@apple.com>2011-08-19 22:17:09 +0000
commitc0f3a1d860787e915ead5fc51ed2f275d0363432 (patch)
tree16188a340dfd948793b1b550a780afdeda21b5c2 /test/FrontendC++/2009-03-17-dbg.cpp
parentc4762a9c912802ef6e81b722ccb7417f259bb49d (diff)
Remove tests migrated to clang or are unnecessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2009-03-17-dbg.cpp')
-rw-r--r--test/FrontendC++/2009-03-17-dbg.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC++/2009-03-17-dbg.cpp b/test/FrontendC++/2009-03-17-dbg.cpp
deleted file mode 100644
index 6708e12f9b..0000000000
--- a/test/FrontendC++/2009-03-17-dbg.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-// RUN: %llvmgxx -S %s -o /dev/null -g
-// XTARGET: darwin,linux
-// XFAIL: *
-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);
-}