annotate nocompile/t/template_class_09.d @ 576:54995adcf26f

compiler hangs on recursive template Nick <Nick_member@pathlink.com> 2005-06-10 news:d8btjq$11c7$1@digitaldaemon.com compiler hangs on recursive template
author thomask
date Sat, 11 Jun 2005 06:18:32 +0000
parents
children b8c0195059d9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
576
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
1 // $HeadURL$
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
2 // $Date$
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
3 // $Author$
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
4
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
5 // @author@ Nick <Nick_member@pathlink.com>
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
6 // @date@ 2005-06-10
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
7 // @uri@ news:d8btjq$11c7$1@digitaldaemon.com
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
8 // @desc@ compiler hangs on recursive template
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
9
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 15
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
11
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
12 module dstress.nocompile.t.template_class_09;
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
13
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
14 template Template(int i) {
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
15 class Class : Template!(i+1).Class{
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
16 }
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
17 }
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
18
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
19 alias Template!(0).Class Class0;
54995adcf26f compiler hangs on recursive template
thomask
parents:
diff changeset
20