#include "gc.h"

#include <assert.h>

int main(int argc, char *argv[])
{
	gcpointer(int) test, test1;

	if(test != test1) { return 1; }
	if(test == test1) { return 1; }
	// if(test == 0)  { return 1; }
	// if(test != 0)  { return 1; }
	// if(test) { return 1; }

	// *test.internal.ptr = 3;
	// int i = *test;

	gcmalloc();
	// test = gcmalloc();

	return 0;
}
