mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-11 22:03:23 +02:00
20 lines
194 B
ObjectPascal
20 lines
194 B
ObjectPascal
{type helper}
|
|
program pt_thlp2;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch typehelpers}
|
|
|
|
type
|
|
TTest = type helper for LongInt
|
|
procedure Test;
|
|
end;
|
|
|
|
procedure TTest.Test;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|