]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memclass6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass6.C
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 (file)
index 65de1d1..0000000
+++ /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;
-}