aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename13.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/typename13.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/typename13.C37
1 files changed, 0 insertions, 37 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename13.C b/gcc/testsuite/g++.old-deja/g++.pt/typename13.C
deleted file mode 100644
index 48d12e6351e..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/typename13.C
+++ /dev/null
@@ -1,37 +0,0 @@
-// Build don't link:
-// Special g++ Options:
-// excess errors test - XFAIL *-*-*
-
-template <class T>
-struct B
-{
- typedef int I;
-};
-
-
-template <class T>
-struct D : public B<T>
-{
- void f();
-};
-
-
-template <class T>
-void D<T>::f()
-{
- I();
-}
-
-
-template <>
-struct B<int>
-{
- void I();
-};
-
-
-int main()
-{
- D<int> di;
- di.f();
-}