aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>2003-08-30 01:43:21 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2003-08-30 01:43:21 +0000
commit5be4b5c92ba293b5f205fa37b46c7d4cc0c3bfb9 (patch)
treea8973ff816c5dc7df01a0de51c5292eee25421ea /gcc
parent7433e6d47086c63eeee0898963a0173f23c380c9 (diff)
downloadgcc-5be4b5c92ba293b5f205fa37b46c7d4cc0c3bfb9.zip
gcc-5be4b5c92ba293b5f205fa37b46c7d4cc0c3bfb9.tar.gz
gcc-5be4b5c92ba293b5f205fa37b46c7d4cc0c3bfb9.tar.bz2
Remove inadvertent commit
From-SVN: r70942
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.dg/ext/cond1.C10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/testsuite/g++.dg/ext/cond1.C b/gcc/testsuite/g++.dg/ext/cond1.C
deleted file mode 100644
index d179307..0000000
--- a/gcc/testsuite/g++.dg/ext/cond1.C
+++ /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);
-}
-