]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb60.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb60.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb60.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb60.C
deleted file mode 100644 (file)
index 2229035..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-//Build don't link:
-#include <string>
-
-class t {
-public:
-       t(const std::string& s) : s_(s) {}
-       std::string s_;
-       static t* t_;
-};
-
-t* t::t_;
-
-t* makeT()
-{
-       return new t("test");
-       return t::t_ ? t::t_ :
-        t::t_ = new t("test");
-}