view dmd/TypeInfoSharedDeclaration.d @ 73:ef02e2e203c2

Updating to dmd2.033
author korDen
date Sat, 28 Aug 2010 19:42:41 +0400
parents 2e2a5c3f943a
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);
	}
}