annotate run/b/bug_e2ir_736_D.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents c35b15527bc1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1038
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
1 // $HeadURL$
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
2 // $Date$
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
3 // $Author$
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
4
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
5 // @author@ <h3r3tic@mat.uni.torun.pl>
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
6 // @date@ 2006-06-01
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1038
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=172
1038
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
8
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
9 module dstress.run.b.bug_e2ir_736_D;
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
10
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
11 int status;
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
12
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
13 template Foo(){
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
14 template T(){
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
15 int func() {
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
16 return status;
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
17 }
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
18 }
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
19 }
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
20
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
21 class Baz{
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
22 mixin Foo bar;
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
23 }
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
24
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
25 int main() {
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
26 status = 3;
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
27 if(Baz.bar.T!().func() != 3){
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
28 assert(0);
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
29 }
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
30
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
31 return 0;
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
32 }
c35b15527bc1 "Internal error: e2ir.c 736" on valid code
thomask
parents:
diff changeset
33