// Test static delegates

class C {
   static run_delegate() {
      delegate "cmd_help_about" ();
   }
}

delegate C : cmd_help_about () {
   trace "\n\nxxx cmd_help_about\n\n";
}

delegate C:"cmd_help_about" = cmd_help_about;

C.run_delegate();