// // this test is a joke : allocate 14 Go // #include #include typedef struct _Go { int x; } Go; int main() { Go *test; test = malloc(sizeof(Go)*14); free(test); return 0; }