//===----------------------------------------------------------------------===//
//
// 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);assert(A::count==1);A*i=p.get();p.reset();assert(A::count==0);assert(p.get()==0);}assert(A::count==0);{std::unique_ptr<A>p(newA);assert(A::count==1);A*i=p.get();p.reset(newA);assert(A::count==1);}assert(A::count==0);}