compiler in infinite loop

Thomas Kuehne thomas-dloop at kuehne.cn
Fri Oct 6 10:55:05 PDT 2006


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

rm schrieb am 2006-10-06:
> hi,
>
> this code puts the dmd compiler (v168) into an infinite loop,
> and it's caused by having a member in this template that has the same
> name as the template.
>
> bye,
> roel
>
>===============================================
>
> private import std.stdio;
>
> template TValue(int i:1)
> {
> 	pragma(msg,"last instantiation!!!");
> 	const int TValue = 1;
> }
>
> template TValue(int i)
> {	
> 	pragma(msg,"instantiating...");
> 	const int TValue = i * TValue!(i-1);
> }
>
> void main()
> {
> 	writefln( TValue!(3) );
> }

Known issue:
http://d.puremagic.com/issues/show_bug.cgi?id=351

Thomas


-----BEGIN PGP SIGNATURE-----

iD8DBQFFJqUsLK5blCcjpWoRAgA5AJsFbPLVZIj07gs+9kNk+EHpsuMfgACfegPB
JwxjmWP6kYuZn8gBpZqwqO8=
=Rohi
-----END PGP SIGNATURE-----



More information about the Digitalmars-d mailing list