Add missing dg-require-cstdint directives to tests
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / any / cons / 1.cc
blob3bfb52f66a23d65a462d4952a1e95a0e798d186c
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;
26 void test01()
28 any x;
29 VERIFY( !x.has_value() );
31 any y(x);
32 VERIFY( !x.has_value() );
33 VERIFY( !y.has_value() );
35 any z(std::move(y));
36 VERIFY( !y.has_value() );
37 VERIFY( !z.has_value() );
40 void test02()
42 any x(1);
43 VERIFY( x.has_value() );
45 any y(x);
46 VERIFY( x.has_value() );
47 VERIFY( y.has_value() );
49 any z(std::move(y));
50 VERIFY( !y.has_value() );
51 VERIFY( z.has_value() );
54 int main()
56 test01();
57 test02();