view run/wchar_08.d @ 1586:a74f0139fc3d

Fix tests using typeof on types.
author Christian Kamm <kamm incasoftware de>
date Thu, 21 Aug 2008 15:42:21 +0200
parents 25e3f5d59df4
children
line wrap: on
line source

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

module dstress.run.wchar_08;

int main(){
	wchar wc;
	assert(wchar.max==0xFFFF);
	assert(wchar.max==wc.max);
	assert(wchar.max=='\u0012'.max);
	return 0;
}