aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memclass6.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/memclass6.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/memclass6.C18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memclass6.C b/gcc/testsuite/g++.old-deja/g++.pt/memclass6.C
deleted file mode 100644
index 65de1d1bd99..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/memclass6.C
+++ /dev/null
@@ -1,18 +0,0 @@
-// Compiler: egcs-2.91.12 980302
-// Error: compiler error in ctor of 'foo::bar<T>::bar(T const &)'
-
-struct foo
-{
- template <typename T>
- struct bar
- {
- bar(T const &t) : tt(t) {}
- T tt;
- };
-};
-
-int main()
-{
- foo::bar<int> fb(3);
- return 0;
-}