view run/wchar_08.d @ 1611:9f94be6a5ace

Fix typo in last commit.
author Christian Kamm <kamm incasoftware de>
date Sun, 10 May 2009 10:56:43 +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;
}