fpc/tests/test/tthlp22.pp
svenbarth 27f398851b The assumptions of test tthlp22 have changed.
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 -
2014-12-12 17:20:13 +00:00

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.