]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp100.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp100.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp100.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp100.C
deleted file mode 100644 (file)
index c88c3e7..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-// Build don't link:
-// Origin: philippeb@videotron.ca
-// Special g++ Options:
-
-#include <iostream>
-
-using namespace std;
-
-template <class T> struct traits
-{
-  typedef long next;
-};
-
-
-template <class T>
-struct c1
-{
-  template <class U>
-  struct c2
-  {
-    c2()
-    {
-      cout << __PRETTY_FUNCTION__ << endl;
-    }
-  };
-};
-
-
-template <class T>
-void foo()
-{
-  cout << __PRETTY_FUNCTION__ << endl;
-  typename c1<typename traits<T>::next>::template c2<void>();
-}
-
-
-int main()
-{
-  foo<int>();
-}