mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 12:29:18 +02:00
* procvar load with overloaded function
This commit is contained in:
parent
71e2d34b5a
commit
5a1fadcef9
15
tests/tbs/tb0448.pp
Normal file
15
tests/tbs/tb0448.pp
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{$mode delphi}
|
||||||
|
|
||||||
|
procedure p1(s:string);overload;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure p1(l:longint);overload;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
pv : procedure(l:longint);
|
||||||
|
begin
|
||||||
|
pv:=p1;
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user