Implement the latest proposed resolution of LWG 2756.
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / optional / assignment / 5.cc
blobd1a75b49ac79b1943bb7ff112a483b3534aec413
1 // { dg-options "-std=gnu++17" }
2 // { dg-do run }
4 // Copyright (C) 2013-2016 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 moved_to 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 <optional>
22 #include <vector>
23 #include <testsuite_hooks.h>
25 int counter = 0;
27 struct mixin_counter
29 mixin_counter() { ++counter; }
30 mixin_counter(mixin_counter const&) { ++counter; }
31 ~mixin_counter() { --counter; }
34 struct value_type : private mixin_counter { };
36 int main()
38 using O = std::optional<value_type>;
40 // Check std::nullopt_t and 'default' (= {}) assignment
43 O o;
44 o = std::nullopt;
45 VERIFY( !o );
49 O o { std::in_place };
50 o = std::nullopt;
51 VERIFY( !o );
55 O o;
56 o = {};
57 VERIFY( !o );
61 O o { std::in_place };
62 o = {};
63 VERIFY( !o );
66 std::optional<std::vector<int>> ovi{{1, 2, 3}};
67 VERIFY(ovi->size() == 3);
68 VERIFY((*ovi)[0] == 1 && (*ovi)[1] == 2 && (*ovi)[2] == 3);
69 ovi = {4, 5, 6, 7};
70 VERIFY(ovi->size() == 4);
71 VERIFY((*ovi)[0] == 4 && (*ovi)[1] == 5 &&
72 (*ovi)[2] == 6 && (*ovi)[3] == 7);
74 VERIFY( counter == 0 );