fpc/tests/webtbs/tw30936c.pp
2016-11-17 19:40:42 +00:00

33 lines
371 B
ObjectPascal

program StaticClassProc;
{$MODE DELPHI}
type
TTest = class
public type
TProcedure = procedure;
private
class procedure MyProc; static;
public
constructor Create;
end;
{ TTest }
constructor TTest.Create;
begin
end;
class procedure TTest.MyProc;
begin
Writeln('OK');
end;
var
aProc: TProcedure;
begin
aProc := TTest.MyProc;
aProc;
end.