* arm.md (stack_tie): New insn. Use an idiom that the alias code
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb21.C
blob11b38cdc731bc8e19f321904a983fd0824a164c8
1 #include <vector>
3 #include <sstream>
5 using namespace std;
7 /*----------------------------------------*/
9 struct connection_t {
10   connection_t() {}
13 std::vector<connection_t> connections;
15 /*----------------------------------------*/
17 int
18 main() {
19   ostringstream str;
21   connections.insert(connections.end(), connection_t());
23   return 0;