www.digitalmars.com         C & C++   DMDScript  

D - [dmd crash] on recursive alias

dmd crashes on the following code:

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

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

So long.
Mar 04 2004