view dmd/Tuple.d @ 166:d8565fbd755c

Moved object and classinfo from ClassDeclaration to Global (as part of getting rid of the global state)
author korDen
date Thu, 30 Sep 2010 10:30:15 +0400
parents e28b18c23469
children e3afd1303184
line wrap: on
line source

module dmd.Tuple;

import dmd.common;
import dmd.ArrayTypes;
import dmd.DYNCAST;

class Tuple
{
	Objects objects;

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

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