]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/ext/vstring/hash/char/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / vstring / hash / char / 1.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
bde8d7f7
PC
2// { dg-require-string-conversions "" }
3
a945c346 4// Copyright (C) 2011-2024 Free Software Foundation, Inc.
bde8d7f7
PC
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 3, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
2328b1de 13// but WITHOUT ANY WARRANTY; without even the implied warranty of
bde8d7f7
PC
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
20
21#include <ext/vstring.h>
22#include <unordered_map>
23#include <testsuite_hooks.h>
24
25// libstdc++/47773
26void test01()
27{
bde8d7f7
PC
28 typedef __gnu_cxx::__vstring vstring_t;
29 typedef std::unordered_map<vstring_t, int> map_t;
30
31 map_t mymap;
32
33 mymap.insert(std::make_pair("hello", 10));
34 mymap.insert(std::make_pair("hi", 20));
35
36 VERIFY( mymap.size() == 2 );
37
11514ce0
PC
38 map_t::const_iterator imap1 = mymap.begin();
39 map_t::const_iterator imap2 = mymap.begin();
40 ++imap2;
41
42 VERIFY( ((imap1->first == "hello" && imap1->second == 10
43 && imap2->first == "hi" && imap2->second == 20)
44 || (imap1->first == "hi" && imap1->second == 20
45 && imap2->first == "hello" && imap2->second == 10)) );
bde8d7f7
PC
46}
47
48int main()
49{
50 test01();
51 return 0;
52}