aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/spec3.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/spec3.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/spec3.C37
1 files changed, 0 insertions, 37 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/spec3.C b/gcc/testsuite/g++.old-deja/g++.pt/spec3.C
deleted file mode 100644
index b0e710f3b01..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/spec3.C
+++ /dev/null
@@ -1,37 +0,0 @@
-extern "C" void abort();
-
-class X
-{
- public:
- virtual int f() const = 0;
-};
-
-template <class T>
-class Y: public X
-{
- public:
- virtual int f() const;
-};
-
-template <class T>
-int Y<T>::f() const
-{
- abort();
- return 0;
-}
-
-template <>
-int Y<bool>::f() const;
-
-template <>
-int Y<bool>::f() const
-{
- return 0;
-}
-
-int main()
-{
- Y<bool> yb;
-
- yb.f();
-}