Remove mistakenly committed files
[gcc.git] / libstdc++-v3 / testsuite / 23_containers / unordered_map / erase / 54276.cc
blobd91abfc4061f2fbed39ead0e2a28feadae03e7f7
1 // Copyright (C) 2012-2025 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8 //
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
19 // { dg-do run { target c++11 } }
21 #include <set>
22 #include <unordered_map>
23 #include <testsuite_hooks.h>
25 struct A
27 int x;
28 static std::set<const A*> destroyed;
30 A()
31 { destroyed.erase(this); }
33 A(const A& a)
34 : x(a.x)
35 { destroyed.erase(this); }
37 ~A()
38 { destroyed.insert(this); }
40 bool
41 operator==(const A& other) const
43 VERIFY( destroyed.find(this) == destroyed.end() );
44 VERIFY( destroyed.find(&other) == destroyed.end() );
45 return x == other.x;
49 std::set<const A*> A::destroyed;
51 struct hasher
53 std::size_t operator()(const A& a) const
55 VERIFY( A::destroyed.find(&a) == A::destroyed.end() );
56 return a.x / 10;
60 void test01()
62 typedef std::unordered_map<A, A, hasher> UMap;
63 UMap map;
65 A::destroyed.clear();
66 A a;
67 a.x = 0;
68 map.insert({a, a});
69 a.x = 1;
70 map.insert({a, a});
71 VERIFY( map.size() == 2 );
72 std::size_t bkt = map.bucket(a);
73 VERIFY( map.bucket_size(bkt) == 2 );
75 VERIFY( map.erase( map.begin(bkt)->first ) == 1 );
78 void test02()
80 typedef std::unordered_map<A, A, hasher> UMap;
81 UMap map;
83 A::destroyed.clear();
84 A a;
85 a.x = 0;
86 map.insert({a, a});
87 a.x = 1;
88 map.insert({a, a});
89 VERIFY( map.size() == 2 );
90 std::size_t bkt = map.bucket(a);
91 VERIFY( map.bucket_size(bkt) == 2 );
93 VERIFY( map.erase( map.begin(bkt)->second ) == 1 );
96 int main()
98 test01();
99 test02();
100 return 0;