mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 04:28:25 +02:00
24 lines
193 B
ObjectPascal
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.
|
|
|