//===----------------------------------------------------------------------===//
//
// 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 reset
#include<memory>#include<cassert>structA{staticintcount;A(){++count;}A(constA&){++count;}~A(){--count;}};intA::count=0;intmain(){{std::unique_ptr<A[]>p(newA[3]);assert(A::count==3);A*i=p.get();p.reset();assert(A::count==0);assert(p.get()==0);}assert(A::count==0);{std::unique_ptr<A[]>p(newA[4]);assert(A::count==4);A*i=p.get();p.reset(newA[5]);assert(A::count==5);}assert(A::count==0);}