]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/any/cons/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / any / cons / 2.cc
CommitLineData
52e86221 1// { dg-options "-std=gnu++17" }
6458742a 2// { dg-do run { target c++17 } }
52e86221 3
99dee823 4// Copyright (C) 2014-2021 Free Software Foundation, Inc.
52e86221
VV
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,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
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 <any>
22#include <testsuite_hooks.h>
23
24using std::any;
25using std::any_cast;
26
1725d05d
VV
27bool moved = false;
28bool copied = false;
29
52e86221
VV
30struct X
31{
52e86221 32 X() = default;
1725d05d 33 X(const X&) { copied = true; }
13feb023 34 X(X&&) { moved = true; }
1725d05d
VV
35};
36
37struct X2
38{
39 X2() = default;
40 X2(const X2&) { copied = true; }
13feb023 41 X2(X2&&) noexcept { moved = true; }
52e86221
VV
42};
43
44void test01()
45{
1725d05d 46 moved = false;
52e86221
VV
47 X x;
48 any a1(x);
1725d05d 49 VERIFY(moved == false);
52e86221 50 any a2(std::move(x));
1725d05d
VV
51 VERIFY(moved == true);
52}
53
54void test02()
55{
56 moved = false;
57 X x;
58 any a1(x);
59 VERIFY(moved == false);
60 copied = false;
61 any a2(std::move(a1));
62 VERIFY(copied == false);
63}
64
65void test03()
66{
67 moved = false;
68 X2 x;
69 any a1(x);
70 VERIFY(moved == false);
71 copied = false;
72 any a2(std::move(a1));
73 VERIFY(copied == false);
74 VERIFY(moved == true);
52e86221
VV
75}
76
77int main()
78{
79 test01();
1725d05d
VV
80 test02();
81 test03();
52e86221 82}