Add missing dg-require-cstdint directives to tests
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / any / cons / 2.cc
blobac79b7ae516060b52ea6b5e28f24eb00e5cf7027
1 // { dg-options "-std=gnu++17" }
2 // { dg-do run }
4 // Copyright (C) 2014-2018 Free Software Foundation, Inc.
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.
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.
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/>.
21 #include <any>
22 #include <testsuite_hooks.h>
24 using std::any;
25 using std::any_cast;
27 bool moved = false;
28 bool copied = false;
30 struct X
32 X() = default;
33 X(const X&) { copied = true; }
34 X(X&& x) { moved = true; }
37 struct X2
39 X2() = default;
40 X2(const X2&) { copied = true; }
41 X2(X2&& x) noexcept { moved = true; }
44 void test01()
46 moved = false;
47 X x;
48 any a1(x);
49 VERIFY(moved == false);
50 any a2(std::move(x));
51 VERIFY(moved == true);
54 void test02()
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);
65 void test03()
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);
77 int main()
79 test01();
80 test02();
81 test03();