pascalabcnet/TestSuite/formatter_tests/input/lambdas_closures_8.pas

5 lines
82 B
ObjectPascal
Raw Permalink Normal View History

2018-04-15 20:52:43 +03:00
begin
var f: IntFunc := x->x*4;
var g: IntFunc := x->x + f(0);
f(1);
end.