1 // { dg-do run  }
2 #include <vector>
3 
4 #include <sstream>
5 
6 using namespace std;
7 
8 /*----------------------------------------*/
9 
10 struct connection_t {
connection_tconnection_t11   connection_t() {}
12 };
13 
14 std::vector<connection_t> connections;
15 
16 /*----------------------------------------*/
17 
18 int
main()19 main() {
20   ostringstream str;
21 
22   connections.insert(connections.end(), connection_t());
23 
24   return 0;
25 }
26