]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/experimental/optional/cons/copy.cc
enable_special_members.h: New.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / optional / cons / copy.cc
1 // { dg-options "-std=gnu++1y" }
2 // { dg-do run }
3
4 // Copyright (C) 2013 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.
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 <experimental/optional>
22 #include <testsuite_hooks.h>
23
24 struct tracker
25 {
26 tracker(int value) : value(value) { ++count; }
27 ~tracker() { --count; }
28
29 tracker(tracker const& other) : value(other.value) { ++count; }
30 tracker(tracker&& other) : value(other.value)
31 {
32 other.value = -1;
33 ++count;
34 }
35
36 tracker& operator=(tracker const&) = default;
37 tracker& operator=(tracker&&) = default;
38
39 int value;
40
41 static int count;
42 };
43
44 int tracker::count = 0;
45
46 struct exception { };
47
48 struct throwing_copy
49 {
50 throwing_copy() = default;
51 throwing_copy(throwing_copy const&) { throw exception {}; }
52 };
53
54 int main()
55 {
56 // [20.5.4.1] Constructors
57
58 {
59 std::experimental::optional<long> o;
60 auto copy = o;
61 VERIFY( !copy );
62 VERIFY( !o );
63 }
64
65 {
66 std::experimental::optional<long> o { std::experimental::in_place, 0x1234ABCDF1E2D3C4 };
67 auto copy = o;
68 VERIFY( copy );
69 VERIFY( *copy == 0x1234ABCDF1E2D3C4 );
70 VERIFY( o && o == 0x1234ABCDF1E2D3C4 );
71 }
72
73 {
74 std::experimental::optional<tracker> o;
75 auto copy = o;
76 VERIFY( !copy );
77 VERIFY( tracker::count == 0 );
78 VERIFY( !o );
79 }
80
81 {
82 std::experimental::optional<tracker> o { std::experimental::in_place, 333 };
83 auto copy = o;
84 VERIFY( copy );
85 VERIFY( copy->value == 333 );
86 VERIFY( tracker::count == 2 );
87 VERIFY( o && o->value == 333 );
88 }
89
90 enum outcome { nothrow, caught, bad_catch };
91
92 {
93 outcome result = nothrow;
94 std::experimental::optional<throwing_copy> o;
95
96 try
97 {
98 auto copy = o;
99 }
100 catch(exception const&)
101 { result = caught; }
102 catch(...)
103 { result = bad_catch; }
104
105 VERIFY( result == nothrow );
106 }
107
108 {
109 outcome result = nothrow;
110 std::experimental::optional<throwing_copy> o { std::experimental::in_place };
111
112 try
113 {
114 auto copy = o;
115 }
116 catch(exception const&)
117 { result = caught; }
118 catch(...)
119 { result = bad_catch; }
120
121 VERIFY( result == caught );
122 }
123
124 VERIFY( tracker::count == 0 );
125 }