]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/local6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / local6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/local6.C b/gcc/testsuite/g++.old-deja/g++.pt/local6.C
deleted file mode 100644 (file)
index d3f2f4c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-extern "C" void abort();
-
-template <class T>
-int f(T)
-{
-  struct S1 {
-    virtual int foo() { return 1; }
-  };
-
-  struct S2 : public S1 {
-    int foo() { return 2; }
-  };
-
-  S1* s2 = new S2;
-
-  return s2->foo();
-}
-
-
-int main()
-{
-  if (f(3) != 2)
-    abort();
-}