//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <memory>
// unique_ptr
// Test unique_ptr move assignment
// test move assignment. Should only require a MoveConstructible deleter, or if
// deleter is a reference, not even that.
#include<memory>#include<cassert>#include"../deleter.h"structA{staticintcount;A(){++count;}A(constA&){++count;}~A(){--count;}};intA::count=0;intmain(){{std::unique_ptr<A[]>s1(newA[3]);A*p=s1.get();assert(A::count==3);std::unique_ptr<A[]>s2(newA[2]);assert(A::count==5);s2=std::move(s1);assert(A::count==3);assert(s2.get()==p);assert(s1.get()==0);}assert(A::count==0);{std::unique_ptr<A[],Deleter<A[]>>s1(newA[4],Deleter<A[]>(5));A*p=s1.get();assert(A::count==4);std::unique_ptr<A[],Deleter<A[]>>s2(newA[5]);assert(A::count==9);s2=std::move(s1);assert(s2.get()==p);assert(s1.get()==0);assert(A::count==4);assert(s2.get_deleter().state()==5);assert(s1.get_deleter().state()==0);}assert(A::count==0);{CDeleter<A[]>d1(5);std::unique_ptr<A[],CDeleter<A[]>&>s1(newA[6],d1);A*p=s1.get();assert(A::count==6);CDeleter<A[]>d2(6);std::unique_ptr<A[],CDeleter<A[]>&>s2(newA[3],d2);assert(A::count==9);s2=std::move(s1);assert(A::count==6);assert(s2.get()==p);assert(s1.get()==0);assert(d1.state()==5);assert(d2.state()==5);}assert(A::count==0);}