pascalabcnet/TestSuite/overl_lam_exit.pas
Mikhalkovich Stanislav aee1a5e176 fix #2172
2020-06-27 15:35:51 +03:00

14 lines
146 B
ObjectPascal

// #2172
procedure p1(p: ()->());
begin
Assert(1=1)
end;
procedure p1(p: byte->());
begin
Assert(1=2)
end;
begin
p1(()-> exit());
end.