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