view run/dchar_07.d @ 144:0e1a3785ec97

1) added missing @url@/@uri@ tags 2) added dchar tests 3) cleanup of opPos, opNeg 4) renamed "classes" -> "class"
author thomask
date Wed, 17 Nov 2004 12:48:16 +0000
parents
children
line wrap: on
line source

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

module dstress.run.dchar_07;

int main(){
	dchar wc;
	assert(dchar.init==0xFFFF);
	assert(dchar.init==wc);
	assert(dchar.init==typeof(wc).init);
	return 0;
}