//===----------------------------------------------------------------------===//
//
// 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(pointer) ctor
// unique_ptr(pointer) ctor should not work with derived pointers
#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;classDeleter{intstate_;Deleter(Deleter&);Deleter&operator=(Deleter&);public:Deleter():state_(5){}intstate()const{returnstate_;}voidoperator()(A*p){delete[]p;}};intmain(){{B*p=newB[3];std::unique_ptr<A[]>s(p);}{B*p=newB[3];std::unique_ptr<A[],Deleter>s(p);}}