mirror of
https://github.com/microsoft/mimalloc.git
synced 2024-12-27 13:33:18 +08:00
c++ override test new placement operator
This commit is contained in:
parent
824fd8a7b1
commit
cbccbbe9a4
@ -95,6 +95,10 @@ static void various_tests() {
|
||||
delete t;
|
||||
t = new (std::nothrow) Test(42);
|
||||
delete t;
|
||||
auto tbuf = new unsigned char[sizeof(Test)];
|
||||
t = new (tbuf) Test(42);
|
||||
t->~Test();
|
||||
delete tbuf;
|
||||
}
|
||||
|
||||
class Static {
|
||||
|
Loading…
x
Reference in New Issue
Block a user