view dmd/PeelStatement.d @ 92:0c891ec48515

Fixed another bug related to copy ctor
author korDen
date Mon, 30 Aug 2010 23:43:38 +0400
parents 2e2a5c3f943a
children e28b18c23469
line wrap: on
line source

module dmd.PeelStatement;

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

class PeelStatement : Statement
{
	Statement s;

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

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