diff --git a/clang/test/CXX/drs/dr2xx.cpp b/clang/test/CXX/drs/dr2xx.cpp index 31ac31b088105..d8fb8941121de 100644 --- a/clang/test/CXX/drs/dr2xx.cpp +++ b/clang/test/CXX/drs/dr2xx.cpp @@ -3,6 +3,7 @@ // RUN: %clang_cc1 -std=c++14 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors // RUN: %clang_cc1 -std=c++17 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors // RUN: %clang_cc1 -std=c++20 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors +// RUN: %clang_cc1 -std=c++2b %s -verify -fexceptions -fcxx-exceptions -pedantic-errors // PR13819 -- __SIZE_TYPE__ is incompatible. typedef __SIZE_TYPE__ size_t; // expected-error 0-1 {{extension}} @@ -692,6 +693,14 @@ namespace dr254 { // dr254: yes A::type n; // expected-note {{instantiation of}} } +namespace dr255 { // dr255: yes +struct S { + void operator delete(void *){}; + void operator delete(void *, int){}; +}; +void f(S *p) { delete p; } +} // namespace dr255 + // dr256: dup 624 namespace dr257 { // dr257: yes diff --git a/clang/www/cxx_dr_status.html b/clang/www/cxx_dr_status.html index 8ca6d081379d8..8d3268b34f52a 100755 --- a/clang/www/cxx_dr_status.html +++ b/clang/www/cxx_dr_status.html @@ -1568,7 +1568,7 @@

C++ defect report implementation status

255 CD6 Placement deallocation functions and lookup ambiguity - Unknown + Yes 256