view run/Wysiwyg_String_10.d @ 1617:2c10afcfcf76

Move run/n/nested_class_04_{C,D} to nocompile. See DMD bug 80.
author Christian Kamm <kamm incasoftware de>
date Thu, 23 Jul 2009 19:49:42 +0200
parents 36bedfa079e6
children
line wrap: on
line source

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

module dstress.run.Wysiwyg_String_10;

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