view nocompile/ExpressionStatement_01.d @ 360:e38919011244

dif. fixes 3
author thomask
date Fri, 25 Mar 2005 05:22:21 +0000
parents 3c8211ff9a83
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

//  Expressions that have no affect are illegal.

// __DSTRESS_ELINE__ 12

module dstress.nocompile.ExpressionStatement_01;

int main(){
	0+1;
	return 0;
}