mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
13 lines
188 B
ObjectPascal
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.
|