annotate compile/b/bug_d_irstate_244_C.d @ 1586:a74f0139fc3d

Fix tests using typeof on types.
author Christian Kamm <kamm incasoftware de>
date Thu, 21 Aug 2008 15:42:21 +0200
parents 7b911baa249b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1273
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
1 // $HeadURL$
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
2 // $Date$
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
3 // $Author$
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
4
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
5 // @author@ sa <someanon@yahoo.com>
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
6 // @date@ 2006-12-17
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=695
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
8 // @desc@ internal compiler error: Aborted
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
9
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
10 module dstress.compile.b.bug_d_irstate_244_C;
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
11
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
12 class String{
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
13 void indexOf(){
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
14 test:
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
15 for(int i; ;){
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
16 continue test;
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
17 }
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
18 }
7b911baa249b internal compiler error: Aborted
thomask
parents:
diff changeset
19 }