mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 06:08:16 +02:00
* fixed test
This commit is contained in:
parent
97b2ef94c1
commit
e27a8d871f
@ -16,7 +16,7 @@ type
|
||||
|
||||
constructor a.create;
|
||||
begin
|
||||
c := @e;
|
||||
c := e;
|
||||
end;
|
||||
|
||||
destructor a.destroy;
|
||||
@ -26,13 +26,13 @@ end;
|
||||
procedure a.e;
|
||||
begin
|
||||
Writeln('E');
|
||||
c := @f;
|
||||
c := f;
|
||||
end;
|
||||
|
||||
procedure a.f;
|
||||
begin
|
||||
Writeln('F');
|
||||
c := @e;
|
||||
c := e;
|
||||
end;
|
||||
|
||||
var
|
||||
|
Loading…
Reference in New Issue
Block a user