pascalabcnet/TestSuite/lambda_func_with_Result_2.pas
Mikhalkovich Stanislav aa3242524a bug fix #1526
and
bug fix #1533
2019-06-18 16:02:15 +03:00

11 lines
125 B
ObjectPascal

procedure p1(f: real-> real) := exit;
begin
p1(r ->
begin
try
Result := r;
except
end;
end);
end.