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