March 04, 2004
dmd crashes on the following code:

alias myfunc delegate(uint) myfunc;
void main(){
  myfunc fr;

  myfunc f(uint num){
    return fr;
  }
}

So long.