mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 13:59:28 +02:00
* reverted n<>nil -> assigned(n) change from r15971 because of this is
no longer required after r15976 git-svn-id: trunk@16063 -
This commit is contained in:
parent
fa4b4906e6
commit
d5b556ba40
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user