https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108391
--- Comment #5 from jinci kang <jincikang at gmail dot com> ---
(In reply to Jakub Jelinek from comment #4)
> No, but:
> #include <new>
>
> int main() {
> void* p = ::operator new[](2);
> #if __cpp_sized_deallocation >= 201309
> ::operator delete[](p, 2);
> #else
> ::operator delete[](p);
> #endif
> }
> or so.
Ok. I see. thanks.
