I’ve encountered an interesting problem while overriding virtual class method. Consider the next program: program Project1; {$APPTYPE CONSOLE} uses SysUtils; type TBase = class class function GetName: string; virtual; class procedure Test; static; end; TChild = ...
More...