Remove inadvertent commit
authorMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 30 Aug 2003 01:43:21 +0000 (01:43 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 30 Aug 2003 01:43:21 +0000 (01:43 +0000)
From-SVN: r70942

gcc/testsuite/g++.dg/ext/cond1.C [deleted file]

diff --git a/gcc/testsuite/g++.dg/ext/cond1.C b/gcc/testsuite/g++.dg/ext/cond1.C
deleted file mode 100644 (file)
index d179307..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// { dg-options "" }
-
-template<int X> class c;
-
-template<int X, int Y> int test(c<X ? : Y>&);
-
-void test(c<2>*c2) {
-       test<0, 2>(*c2);
-}
-