blob: aa4fdb8a96b1d313c35a0699c2f29637c2280989 [file] [log] [blame]
Howard Hinnantc52f43e2010-08-22 00:59:46 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantc52f43e2010-08-22 00:59:46 +00007//
8//===----------------------------------------------------------------------===//
9
10// <memory>
11
12// unique_ptr
13
14// Test unique_ptr move assignment
15
16#include <memory>
Dan Albert1d4a1ed2016-05-25 22:36:09 -070017#include <cassert>
Howard Hinnantc52f43e2010-08-22 00:59:46 +000018
19// Can't copy from lvalue
Dan Albert1d4a1ed2016-05-25 22:36:09 -070020
21struct A
22{
23 static int count;
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
27};
28
29int A::count = 0;
30
31class Deleter
32{
33 int state_;
34
35public:
36
37 Deleter() : state_(5) {}
38
39 int state() const {return state_;}
40
41 void operator()(A* p) {delete p;}
42};
43
Howard Hinnantc52f43e2010-08-22 00:59:46 +000044int main()
45{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070046 {
47 std::unique_ptr<A, Deleter> s(new A);
48 A* p = s.get();
49 std::unique_ptr<A, Deleter> s2;
50 s2 = s;
51 assert(s2.get() == p);
52 assert(s.get() == 0);
53 assert(A::count == 1);
54 }
55 assert(A::count == 0);
Howard Hinnantc52f43e2010-08-22 00:59:46 +000056}