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

8 lines
104 B
ObjectPascal

begin
var p: ()->boolean := ()->
begin
case 0 of
0: Result := true;
end
end;
end.