pascalabcnet/TestSuite/overl_lam_exit.pas

14 lines
146 B
ObjectPascal
Raw Permalink Normal View History

2020-06-27 15:35:51 +03:00
// #2172
procedure p1(p: ()->());
begin
Assert(1=1)
end;
procedure p1(p: byte->());
begin
Assert(1=2)
end;
begin
p1(()-> exit());
end.