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