comparison 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
comparison
equal deleted inserted replaced
1272:ecd6e898948d 1273:7b911baa249b
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ sa <someanon@yahoo.com>
6 // @date@ 2006-12-17
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=695
8 // @desc@ internal compiler error: Aborted
9
10 module dstress.compile.b.bug_d_irstate_244_A;
11
12 class String{
13 int indexOf(){
14 test:
15 for(int i; ;){
16 continue test;
17 return 0;
18 }
19 }
20 }