//===----------------------------------------------------------------------===//
//
// 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>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(){{std::unique_ptr<B>s(newB);A*p=s.get();std::unique_ptr<A>s2(newA);assert(A::count==2);s2=std::move(s);assert(s2.get()==p);assert(s.get()==0);assert(A::count==1);assert(B::count==1);}assert(A::count==0);assert(B::count==0);}