On Thursday, June 14, 2012 00:32:45 BLM768 wrote: > For some reason, whenever I declare a method with package > visibility, it becomes non-virtual. Is this normal behavior, or > is there a bug in DMD 2.059?
Only public and protected functions can be virtual. private and package functions are never virtual. This is by design. - Jonathan M Davis