Marcio Faustino wrote:
> The following code:
> void f() { f; }
> void main() {
>     f();
> }
> 
> compiled by DMD v1.0 (on Windows XP) generates an "Error: Stack Overflow"
> error.
This is a programmer error. you are calling the function f within the
function f causing an infinite recursion.