Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered / insert / 24061-set.cc
blobc7d670c9f491bfd3289d408d587c317e536909fe
1 // 2005-10-08 Paolo Carlini <pcarlini@suse.de>
2 //
3 // Copyright (C) 2005 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // 6.3.4.3 Class template unordered_set
23 #include <tr1/unordered_set>
24 #include <string>
25 #include <testsuite_hooks.h>
27 // libstdc++/24061
28 void test01()
30 bool test __attribute__((unused)) = true;
32 typedef std::tr1::unordered_set<std::string> Set;
33 typedef Set::iterator iterator;
34 typedef Set::const_iterator const_iterator;
36 Set s1;
38 iterator it1 = s1.insert(s1.begin(), "all the love in the world");
39 VERIFY( s1.size() == 1 );
40 VERIFY( *it1 == "all the love in the world" );
42 const_iterator cit1(it1);
43 const_iterator cit2 = s1.insert(cit1, "you know what you are?");
44 VERIFY( s1.size() == 2 );
45 VERIFY( cit2 != cit1 );
46 VERIFY( *cit2 == "you know what you are?" );
48 iterator it2 = s1.insert(it1, "all the love in the world");
49 VERIFY( s1.size() == 2 );
50 VERIFY( it2 == it1 );
51 VERIFY( *it2 == "all the love in the world" );
54 int main()
56 test01();
57 return 0;