view dmd/TypeInfoSharedDeclaration.d @ 94:3a0b150c9841

Objects -> Vector!Object iteration 1
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 23:00:34 +0100
parents ef02e2e203c2
children acd69f84627e
line wrap: on
line source

module dmd.TypeInfoSharedDeclaration;

import dmd.Type;
import dmd.TypeInfoDeclaration;
import dmd.backend.dt_t;

class TypeInfoSharedDeclaration : TypeInfoDeclaration
{
	this(Type tinfo)
	{
		super(tinfo, 0);
	    type = Type.typeinfoshared.type;
	}

	override void toDt(dt_t** pdt)
	{
		assert(false);
	}
}