view run/dchar_03.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_03;

int main(){
	dchar c;
	assert(dchar.sizeof==4);
	assert(dchar.sizeof==c.sizeof);
	assert(dchar.sizeof==(cast(dchar)'a').sizeof);
	assert(dchar.sizeof==typeof(c).sizeof);
	return 0;
}