view dmd/Tuple.d @ 76:5196b7829be2

Changed mars.c to mars2.c to avoid obscure bugs when wrong main function is linked
author korDen
date Sun, 29 Aug 2010 13:19:02 +0400
parents 81796b717a39
children e28b18c23469
line wrap: on
line source

module dmd.Tuple;

import dmd.ArrayTypes;
import dmd.DYNCAST;

class Tuple
{
	Objects objects;

	this()
	{
		objects = new Objects();
	}

	DYNCAST dyncast()
	{
		assert(false);
	}
}