aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
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);
-}
-