fpc/tests/tbs/tb0645c.pp
2018-06-22 21:29:08 +00:00

24 lines
193 B
ObjectPascal

unit tb0645c;
{$mode objfpc}
{$modeswitch advancedrecords on}
interface
type
TTest = record
procedure Test;
end;
implementation
{ TTest }
procedure TTest.Test;
begin
end;
end.