1 // Copyright (C) 2013-2019 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
22 tracker(int value
) : value(value
) { ++count
; }
23 ~tracker() { --count
; }
25 tracker(tracker
const& other
) : value(other
.value
) { ++count
; }
26 tracker(tracker
&& other
) : value(other
.value
)
32 tracker
& operator=(tracker
const&) = default;
33 tracker
& operator=(tracker
&&) = default;
40 int tracker::count
= 0;
46 throwing_move() = default;
47 throwing_move(throwing_move
const&) { throw exception
{}; }
52 // [20.5.4.1] Constructors
55 gdb::optional
<long> o
;
56 auto moved_to
= std::move(o
);
62 const long val
= 0x1234ABCD;
63 gdb::optional
<long> o
{ gdb::in_place
, val
};
64 auto moved_to
= std::move(o
);
66 VERIFY( *moved_to
== val
);
67 VERIFY( o
&& *o
== val
);
71 gdb::optional
<tracker
> o
;
72 auto moved_to
= std::move(o
);
74 VERIFY( tracker::count
== 0 );
79 gdb::optional
<tracker
> o
{ gdb::in_place
, 333 };
80 auto moved_to
= std::move(o
);
82 VERIFY( moved_to
->value
== 333 );
83 VERIFY( tracker::count
== 2 );
84 VERIFY( o
&& o
->value
== -1 );
87 enum outcome
{ nothrow
, caught
, bad_catch
};
90 outcome result
= nothrow
;
91 gdb::optional
<throwing_move
> o
;
95 auto moved_to
= std::move(o
);
97 catch(exception
const&)
100 { result
= bad_catch
; }
102 VERIFY( result
== nothrow
);
106 outcome result
= nothrow
;
107 gdb::optional
<throwing_move
> o
{ gdb::in_place
};
111 auto moved_to
= std::move(o
);
113 catch(exception
const&)
116 { result
= bad_catch
; }
118 VERIFY( result
== caught
);
121 VERIFY( tracker::count
== 0 );
124 } // namespace cons_move