fpc/tests/ts010101.pp
pierre b3867488fb + added a makefile for tests
+ uses getref  for extracting error code
  + required command lines args can be place in the first line of
    source code
    following $OPT=
1998-10-21 11:33:26 +00:00

14 lines
141 B
ObjectPascal

{ $OPT=-S2
}
{ tests assignements and compare }
var
o1,o2 : tobject;
begin
o1:=nil;
o2:=o1;
if o2<>nil then
halt(1);
end.