blob: a061fc016cf3c99f00d38e7ab0f04a7279fdcac0 [file] [log] [blame]
// { dg-do run }
#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;
}