update test to match malloc with free

This commit is contained in:
daan 2019-10-17 09:21:20 -07:00
parent 46aa16b432
commit 0e188a18a7

View file

@ -41,7 +41,7 @@ int main() {
p2 = malloc(16);
p1 = realloc(p1, 32);
free(p1);
mi_free(p2);
free(p2);
mi_free(s);
Test* t = new Test(42);
delete t;