September 26, 2002
The following code causes the compiler to crash.

int main(char[][] argv)
{
  struct Test
  {
    int a;

    void func(int b)
    {
      a = b;
    }
  }

  void delegate(int) funDel;

  Test foo;

  funDel = &foo.func;

  funDel(12);

  printf("%d\n",foo.a);

  return 0;
}
September 26, 2002
Thanks, I'll take care of it. -Walter