view run/break_01.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 6e4063f99377
line wrap: on
line source

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

// @author@	John Reimer <brk_6502@NO_SPA_M.yahoo.com>
// @date@	2004-07-11
// @uri@	news:cct6f0$cj6$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/783

module dstress.run.break_01;

int main() {
	while (true) {
		try {
			if (true){
                	        break;
			}else{
				assert(0);
			}
		} catch (Object e) {
                }
		assert(0);
        }
        return 0;
}