blob: a061fc016cf3c99f00d38e7ab0f04a7279fdcac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// { 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;
}
|