mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 11:38:01 +02:00
14 lines
144 B
ObjectPascal
14 lines
144 B
ObjectPascal
{$mode objfpc}
|
|
|
|
{ tests assignements and compare }
|
|
|
|
var
|
|
o1,o2 : tobject;
|
|
|
|
begin
|
|
o1:=nil;
|
|
o2:=o1;
|
|
if o2<>nil then
|
|
halt(1);
|
|
end.
|