fpc/tests/webtbs/tw38054.pp
Jonas Maebe 091b0fde0c * fixed type of size parameter passed to fpc_getmem() when translating
new(pointer) (mantis #38054)

git-svn-id: trunk@47355 -
2020-11-08 22:42:38 +00:00

13 lines
214 B
ObjectPascal

{ %norun }
const
l = high(ptrint); // 2000 <--> 2100
type
t = array[ 1..l ]of int8; // 1.95 <--> 2.05 GiBy
var
p: ^t;
begin
new(p);
writeln( sizeof(p^) );
p^[l]:=0; writeln(p^[l])
end .