/* 
TEST_HEADER
 id = $HopeName$
 summary = create a space with an unaligned space_t
 language = c
 link = testlib.o
END_HEADER
*/

#include "testlib.h"
#include "arg.h"

static void test(void)
{
 adie(mps_space_create(UNALIGNED),
      "Create space");
}

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