//===----------------------------------------------------------------------===//
//
// 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 converting move assignment
#include<memory>#include<cassert>#include"../deleter.h"structA{staticintcount;A(){++count;}A(constA&){++count;}virtual~A(){--count;}};intA::count=0;structB:publicA{staticintcount;B(){++count;}B(constB&){++count;}virtual~B(){--count;}};intB::count=0;intmain(){{boost::unique_ptr<B[],Deleter<B>>s(newB);A*p=s.get();boost::unique_ptr<A[],Deleter<A>>s2(newA);assert(A::count==2);s2=(boost::move(s));assert(s2.get()==p);assert(s.get()==0);assert(A::count==1);assert(B::count==1);assert(s2.get_deleter().state()==5);assert(s.get_deleter().state()==0);}assert(A::count==0);assert(B::count==0);}