]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb21.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb21.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb21.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb21.C
deleted file mode 100644 (file)
index 11b38cd..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <vector>
-
-#include <sstream>
-
-using namespace std;
-
-/*----------------------------------------*/
-
-struct connection_t {
-  connection_t() {}
-};
-
-std::vector<connection_t> connections;
-
-/*----------------------------------------*/
-
-int
-main() {
-  ostringstream str;
-
-  connections.insert(connections.end(), connection_t());
-
-  return 0;
-}