You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
812 B
C++
40 lines
812 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <memory>
|
|
|
|
// default_delete
|
|
|
|
// Test that default_delete<T[]> has a working default constructor
|
|
|
|
#include <memory>
|
|
#include <cassert>
|
|
|
|
#include "test_macros.h"
|
|
|
|
struct A
|
|
{
|
|
static int count;
|
|
A() {++count;}
|
|
A(const A&) {++count;}
|
|
~A() {--count;}
|
|
};
|
|
|
|
int A::count = 0;
|
|
|
|
int main(int, char**)
|
|
{
|
|
std::default_delete<A[]> d;
|
|
A* p = new A[3];
|
|
assert(A::count == 3);
|
|
d(p);
|
|
assert(A::count == 0);
|
|
|
|
return 0;
|
|
}
|