Repository URL to install this package:
Version:
3.0.0 ▾
|
{ %NORUN }
{ although records can't have (strict) protected, record helpers can }
program trhlp21;
{$ifdef fpc}
{$mode delphi}
{$endif}
type
TTest = record
end;
TTestHelper = record helper for TTest
protected
procedure Test;
end;
procedure TTestHelper.Test;
begin
end;
begin
end.