view run/encoding_utf_8.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 0c82f6ca8335
children
line wrap: on
line source

// encoding :utf-8
int main(){
	assert('y'== 0x79);
	assert('€'== 0x80);
	assert('ޙ'== 0x799);
	assert('ࠀ'== 0x800);
	assert(''== 0xFFFA);
	assert('𐀀'== 0x10000);
	assert('𐿽'== 0x10FFD);
	return 0;
}