Fix order and types of members in C++17 insert_return_type structs
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / unordered_multiset / 55043.cc
blobb9999516ae0cad5117a550338c1e8749ba71c32a
1 // { dg-do compile { target c++11 } }
3 // Copyright (C) 2013-2017 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 3, 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 COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // libstdc++/55043
22 #include <unordered_set>
23 #include <vector>
25 struct MoveOnly
27 MoveOnly() = default;
28 MoveOnly(MoveOnly&&) = default;
31 struct equal {
32 bool operator()(const MoveOnly&, const MoveOnly&) const { return true; }
34 struct hash {
35 std::size_t operator()(const MoveOnly&) const { return 0; }
38 template<typename Alloc>
39 using test_type = std::unordered_multiset<MoveOnly, hash, equal, Alloc>;
41 void test01()
43 typedef test_type<std::allocator<MoveOnly>> uim;
44 std::vector<uim> v;
45 v.emplace_back(uim());