view run/wchar_03.d @ 142:25e3f5d59df4

added wchar tests
author thomask
date Wed, 17 Nov 2004 09:09:56 +0000
parents
children
line wrap: on
line source

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

module dstress.run.wchar_03;

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