fpc/tests/webtbs/tw41177.pp

13 lines
188 B
ObjectPascal

program test;
{$pointermath on}
type
PRec = ^TRec;
TRec = record
end;
begin
argv:=@PRec(0)[0]; // OK
argv:=@PRec(nil)[0]; // NotOK - "Can't assign values to an address"
end.