Sfoglia il codice sorgente

* reverted n<>nil -> assigned(n) change from r15971 because of this is
no longer required after r15976

git-svn-id: trunk@16063 -

Jonas Maebe 15 anni fa
parent
commit
d5b556ba40
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      tests/test/tmacprocvar.pp

+ 1 - 1
tests/test/tmacprocvar.pp

@@ -48,7 +48,7 @@ begin
 	B(@A);
 	n := nil;
 	n := A;
-	if assigned(n) then
+	if nil <> n then
 		C(n);
 	C(A);
 	C(@A);