OSDN Git Service

2010-01-09 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / unordered_multimap / cons / self_move_assign.cc
1 // { dg-options "-std=gnu++0x" }
2
3 // 2010-01-08  Paolo Carlini  <paolo.carlini@oracle.com>
4
5 // Copyright (C) 2010 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
12
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3.  If not see
20 // <http://www.gnu.org/licenses/>.
21
22 #include <unordered_map>
23 #include <testsuite_hooks.h>
24
25 void test01()
26 {
27   bool test __attribute__((unused)) = true;
28
29   typedef std::unordered_multimap<int, int>  ummap_type;
30   typedef ummap_type::value_type             value_type;
31
32   ummap_type umm0{ value_type(1, 1), value_type(2, 2), value_type(3, 3) };
33
34   const ummap_type umm1(umm0);
35   umm0 = std::move(umm0);
36   VERIFY( umm0.size() == 3 );
37   // VERIFY( umm0 == umm1 );
38 }
39
40 int main()
41 {
42   test01();
43   return 0;
44 }