view run/e/ExpressionStatement_10_A.d @ 1268:93511f726375

partial review
author thomask
date Thu, 21 Dec 2006 15:12:10 +0000
parents c2931e457792
children
line wrap: on
line source

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

module dstress.run.e.ExpressionStatement_10_A;

int main(){
	int x = 3;
	cast(void)(x + x);

	if(x != 3){
		assert(0);
	}

	return 0;
}