view compile/b/bug_d_irstate_244_A.d @ 1273:7b911baa249b

internal compiler error: Aborted sa <someanon@yahoo.com> 2006-12-17 http://d.puremagic.com/issues/show_bug.cgi?id=695
author thomask
date Sat, 23 Dec 2006 16:12:22 +0000
parents
children
line wrap: on
line source

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

// @author@	sa <someanon@yahoo.com>
// @date@	2006-12-17
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=695
// @desc@	internal compiler error: Aborted

module dstress.compile.b.bug_d_irstate_244_A;

class String{
	int indexOf(){
	test:
		for(int i; ;){
			continue test;
			return 0;
		}
	}
}