view dmd/PeelStatement.d @ 182:b64060ab22df

Now compileable with dmd2.050
author korDen
date Sat, 30 Oct 2010 05:05:32 +0400
parents e3afd1303184
children b0d41ff5e0df
line wrap: on
line source

module dmd.PeelStatement;

import dmd.common;
import dmd.Statement;
import dmd.Scope;
import dmd.Loc;

class PeelStatement : Statement
{
	Statement s;

	this(Statement s)
	{
		register();
		assert(false);
		super(Loc(0));
	}

	override Statement semantic(Scope sc)
	{
		assert(false);
	}
}