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

34 lines
382 B
ObjectPascal

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