1 // mismatches in the parent directory has a size
2 // mismatch, but only with GCC, hence a testcase that
3 // explicitly has delete size mismatches
12 std::size_t badsize(33);
16 mem
= operator new(size
);
17 operator delete(mem
, badsize
);
19 mem
= operator new[](size
);
20 operator delete[](mem
, badsize
);