view dmd/Tuple.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents e3afd1303184
children
line wrap: on
line source

module dmd.Tuple;

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

import dmd.TObject;

class Tuple : TObject
{
	Objects objects;

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

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