2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb21.C
bloba061fc016cf3c99f00d38e7ab0f04a7279fdcac0
1 // { dg-do run  }
2 #include <vector>
4 #include <sstream>
6 using namespace std;
8 /*----------------------------------------*/
10 struct connection_t {
11   connection_t() {}
14 std::vector<connection_t> connections;
16 /*----------------------------------------*/
18 int
19 main() {
20   ostringstream str;
22   connections.insert(connections.end(), connection_t());
24   return 0;