fpc/tests/webtbs/tw8141.pp
tom_at_work 5234486213 * fixed test for 64 bit platforms
git-svn-id: trunk@6093 -
2007-01-20 22:18:08 +00:00

20 lines
230 B
ObjectPascal

{ %norun }
uses
Classes, SysUtils;
type
ARec = packed record
{$ifdef cpu64}
hi, lo : DWord;
{$else}
hi, lo : Word;
{$endif}
end;
var
List : TList;
begin
with ARec(Pointer(List.Last)) do
lo := 1;
end.