view run/Wysiwyg_String_04.d @ 1598:23834ba9736a

Fixed typos in test cases. See D bug 2174.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:03:25 +0200
parents 36bedfa079e6
children
line wrap: on
line source

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

module dstress.run.Wysiwyg_String_04;

int main(){
	string x=r"\?";
	assert(x.length==2);
	assert(x[0]=='\\');
	assert(x[1]=='\?');
	return 0;
}