mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 01:08:07 +02:00
20 lines
221 B
ObjectPascal
20 lines
221 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tthlp31;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch typehelpers}
|
|
|
|
type
|
|
Test = type LongInt;
|
|
|
|
TTestHelper = type helper for Test
|
|
end;
|
|
|
|
TLongIntHelper = type helper(TTestHelper) for LongInt
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|