pascalabcnet/TestSuite/formatter_tests/input/lambdas_closures_8.pas
Бондарев Иван 88d6870f93 bug fix #680
2018-04-15 19:52:43 +02:00

5 lines
82 B
ObjectPascal

begin
var f: IntFunc := x->x*4;
var g: IntFunc := x->x + f(0);
f(1);
end.