]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/template31.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template31.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/template31.C b/gcc/testsuite/g++.old-deja/g++.jason/template31.C
deleted file mode 100644 (file)
index 6aa2936..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-// PRMS Id: 8569
-
-#include <iostream>
-#include <vector>
-
-using std::vector;
-class Component {
-    int george;
-    char mabel[128];
-};
-class CopyMe {
-public:
-    CopyMe(){;}
-private:
-    vector<Component> strvec;
-};
-
-class IncludeIt   {
-public:
-    IncludeIt() {}
-    ~IncludeIt() {}
-    IncludeIt(const IncludeIt& i) {
-        myStrvec = i.myStrvec;
-    }
-    IncludeIt& operator=(const IncludeIt& i) {
-       myStrvec = i.myStrvec;
-       return *this;
-    }
-private:
-    CopyMe myStrvec;
-};
-
-int main(int argc, char**argv)   {
-    IncludeIt foo;
-    IncludeIt* bar;
-    std::exit(0);
-}