pascalabcnet/TestSuite/lambdas4.pas
Бондарев Иван 082fe67a18 bug fix #591
2017-12-28 14:33:23 +01:00

17 lines
196 B
ObjectPascal

type
t1=class
function f1:byte:=2;
constructor;
begin
var a:= new byte[1];
a.Fill(i->f1);
assert(a[0] = 2);
end;
end;
begin
new t1;
end.