1 // { dg-do run { target c++11 } }
3 // Copyright (C) 2007-2016 Free Software Foundation, Inc.
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)
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 #undef _GLIBCXX_CONCEPT_CHECKS
23 #include <testsuite_hooks.h>
24 #include <testsuite_iterators.h>
25 #include <testsuite_rvalref.h>
27 using __gnu_test::test_container
;
28 using __gnu_test::input_iterator_wrapper
;
29 using __gnu_test::output_iterator_wrapper
;
30 using __gnu_test::rvalstruct
;
33 typedef test_container
<rvalstruct
, input_iterator_wrapper
> container_in
;
34 typedef test_container
<rvalstruct
, output_iterator_wrapper
> container_out
;
38 int inarray
[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
39 const int size
= sizeof(inarray
) / sizeof(int);
41 rvalstruct in
[size
], out
[size
];
42 std::copy(inarray
, inarray
+ size
, in
);
43 std::fill(out
, out
+ size
, 0);
45 container_in
incon(in
, in
+ size
);
46 container_out
outcon(out
, out
+ size
);
48 move(incon
.begin(), incon
.end(), outcon
.begin());
49 VERIFY( std::equal(out
, out
+ size
, inarray
) );
50 for (int z
= 0; z
< size
; ++z
)
51 VERIFY( out
[z
].valid
);
52 for (int z
= 0; z
< size
; ++z
)
53 VERIFY( !in
[z
].valid
);