mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 12:50:31 +02:00

tests/test/tthlp22.pp: * this test fails no longer as Mode Delphi by default also contains modeswitch TypeHelpers * adjust program name for consistency git-svn-id: trunk@29274 -
16 lines
191 B
ObjectPascal
16 lines
191 B
ObjectPascal
{ %NORUN }
|
|
|
|
{ type helpers are not parsed if modeswitch typehelpers is not set (mode Delphi) }
|
|
|
|
program tthlp22;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TTest = record helper for LongInt
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|