]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp28.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp28.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp28.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp28.C
deleted file mode 100644 (file)
index 37e79c8..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-extern "C" void abort();
-
-int k;
-
-template <class X>
-struct S
-{
-  template <class U>
-  void f(U u)
-  { ++k; g(u); }
-
-  template <class U>
-  void g(U u)
-  { ++k; }
-
-  int c[16];
-};
-
-int main()
-{
-  S<char*> s;
-  s.f(3);
-  s.f("adf");
-
-  if (k != 4)
-    abort();
-}