view run/ushort_01.d @ 1624:16361129bf5f

add test
author Moritz Warning <moritzwarning@web.de>
date Thu, 06 Jan 2011 14:25:32 +0100
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.ushort_01;

int main(){
	ushort a;
	assert( a.init == 0 );
	assert( ushort.init == 0 );
	assert( a == 0 );
	return 0; 
}