annotate nocompile/t/typeof_13_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents e7e487c06620
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1175
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
1 // $HeadURL$
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
2 // $Date$
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
3 // $Author$
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
4
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
5 // @author@ Bruno Medeiros <brunodomedeiros+bugz@gmail.com>
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
6 // @date@ 2006-09-26
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1175
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=371
1175
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
8 // @desc@ [Issue 371] New: ICE on mutual recursive typeof in function declarations
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
9
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
10 module dstress.nocompile.t.typeof_13_A;
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
11
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
12 void funcA( typeof(&funcB) p) {
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
13 }
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
14
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
15 void funcB( typeof(&funcA) p) {
e7e487c06620 [Issue 371] New: ICE on mutual recursive typeof in function declarations
thomask
parents:
diff changeset
16 }