12561885fSEric Fiselier //===----------------------------------------------------------------------===//
22561885fSEric Fiselier //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
62561885fSEric Fiselier //
72561885fSEric Fiselier //===----------------------------------------------------------------------===//
82561885fSEric Fiselier 
92561885fSEric Fiselier // <memory>
102561885fSEric Fiselier 
112561885fSEric Fiselier // default_delete
122561885fSEric Fiselier 
132561885fSEric Fiselier // Test that default_delete<T[]> has a working default constructor
142561885fSEric Fiselier 
152561885fSEric Fiselier #include <memory>
162561885fSEric Fiselier #include <cassert>
172561885fSEric Fiselier 
18*7fc6a556SMarshall Clow #include "test_macros.h"
19*7fc6a556SMarshall Clow 
202561885fSEric Fiselier struct A
212561885fSEric Fiselier {
222561885fSEric Fiselier     static int count;
AA232561885fSEric Fiselier     A() {++count;}
AA242561885fSEric Fiselier     A(const A&) {++count;}
~AA252561885fSEric Fiselier     ~A() {--count;}
262561885fSEric Fiselier };
272561885fSEric Fiselier 
282561885fSEric Fiselier int A::count = 0;
292561885fSEric Fiselier 
main(int,char **)302df59c50SJF Bastien int main(int, char**)
312561885fSEric Fiselier {
322561885fSEric Fiselier     std::default_delete<A[]> d;
332561885fSEric Fiselier     A* p = new A[3];
342561885fSEric Fiselier     assert(A::count == 3);
352561885fSEric Fiselier     d(p);
362561885fSEric Fiselier     assert(A::count == 0);
372df59c50SJF Bastien 
382df59c50SJF Bastien   return 0;
392561885fSEric Fiselier }
40