No, really - test the constructor

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@261875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2016-02-25 15:27:13 +00:00
parent 5425ba06f6
commit 17a80bc8b6

View File

@@ -23,5 +23,5 @@
int main()
{
std::default_delete<int[]> d1;
std::default_delete<const int[]> d2;
std::default_delete<const int[]> d2 = d1;
}