/* 
TEST_HEADER
 id = $Id: //info.ravenbrook.com/project/mps/master/test/conerr/15.c#7 $
 summary = destroy an uncreated pool
 language = c
 link = testlib.o
OUTPUT_SPEC
 assert = true
 assertfile P= mpsi.c
 assertcond = TESTT(Pool, pool)
END_HEADER
*/

#include <stdlib.h>

#include "testlib.h"

static void test(void *stack_pointer)
{
 mps_pool_t pool = malloc(4096);
 mps_pool_destroy(pool);
}

int main(void)
{
 run_test(test);
 return 0;
}