pascalabcnet/TestSuite/lambda_nonstatic_from_static.pas
Mikhalkovich Stanislav f7a01bc366 bug fix #1946
2019-05-20 23:48:59 +03:00

24 lines
276 B
ObjectPascal

type
t1 = class
b: byte;
static procedure p1(b: byte);
begin
var p: procedure;
p := ()->
begin
p := ()->
begin
b := b;
end;
end;
end;
end;
begin
Assert(1=1);
end.