]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/crash39.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / crash39.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash39.C b/gcc/testsuite/g++.old-deja/g++.pt/crash39.C
deleted file mode 100644 (file)
index 2c4bb5a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-// Origin: Ian Nixon <ian@tharas.com>
-
-class Action {
-public:
-  virtual void action () = 0;
-};
-
-class Var {
-public:
-
-  template<class Base> void Add() {
-       struct tmp : public Action {
-         void action () {}
-       };
-       tmp *tp = new tmp; 
-  }
-
-};