pascalabcnet/TestSuite/intellisense_tests/lambdas7.pas

14 lines
151 B
ObjectPascal
Raw Permalink Normal View History

2019-02-17 13:43:59 +03:00
type
t1 = class
constructor(p: procedure) := p;
end;
begin
new t1(()->
begin
var b{@var b: byte;@}: byte;
end);
end.