view run/unicode_02.d @ 4:1ed6616fe905

extended array tests
author thomask
date Sun, 26 Sep 2004 15:54:31 +0000
parents
children f87ba6507260
line wrap: on
line source

int main(){
	char[] a="\u00C4";
	char[] b="\u0041\u0308";
	
	if(b>a){
		assert(0);
	}

	return 0;
}