view run/Alternate_Wysiwyg_String_06.d @ 1626:e160bfec54d5

add test
author Moritz Warning <moritzwarning@web.de>
date Thu, 06 Jan 2011 15:52:55 +0100
parents ec5e144583ea
children
line wrap: on
line source

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

module dstress.run.Alternate_Wysiwyg_String_06;

int main(){
	string arr=`\a`;
	if(2 != arr.length){ assert(0); }
	if('\\' != arr[0]){ assert(0); }
	if('a' != arr[1]){ assert(0); }
	return 0;
}