14 lines
151 B
ObjectPascal
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. |