pascalabcnet/TestSuite/intellisense_tests/lambdas7.pas
Бондарев Иван 744845a060 fix #1736
2019-02-17 11:43:59 +01:00

14 lines
151 B
ObjectPascal

type
t1 = class
constructor(p: procedure) := p;
end;
begin
new t1(()->
begin
var b{@var b: byte;@}: byte;
end);
end.