view run/html_line_ending_dos.html @ 767:8bc1fdc33e0b

fixed typos in bug_cgcs_353_*3.d and html_line_ending_dos
author thomask
date Mon, 05 Dec 2005 03:00:16 +0000
parents 9a121126b077
children 36bedfa079e6
line wrap: on
line source

<html>
	<head><title>dstress: html_line_ending_dos</title></head>
	<body><pre><CODE>
// __DSTRESS_TORTURE_BLOCK__ -release

int main(){
	try{
		assert(0);
	}catch(Exception e){
		checkLineNumber(e);
		return 0;
	}

	return 1;
}

/*
 * @WARNING@ this code depends on the phobos implementation.
 * char[]s returned by wrong assertions have to look like:
 *	 "blah blah (linenumber) blah blah"
 */
void checkLineNumber(Object o){
	char[] string=o.toString();

	int start;
	for(start=0; start&lt;string.length; start++){if(string[start]=='('){break;}}

	int end;
	for(end=string.length-1; end&gt;start; end--){if(string[end]==')'){break;}}

	assert(end-start==2);
	assert(string[start+1]=='8');
}
	</CODE></pre></body>
</html>