fpc/tests/test/tparray26.pp
Jonas Maebe e13a708002 * fixed compiler crash when using a bitpacked array whose size was
close to high(longint) bytes

git-svn-id: trunk@13241 -
2009-06-06 12:33:18 +00:00

11 lines
152 B
ObjectPascal

{ %norun }
type
ta = bitpacked array[0..high(longint)-1] of 0..1;
var
p: pointer;
begin
getmem(p,sizeof(ta));
ta(p^)[high(longint)-1]:=1;
end.