pascalabcnet/TestSuite/lambda_capture_GenClassInheritance.pas

20 lines
233 B
ObjectPascal
Raw Normal View History

type
t0<T> = class end;
t1 = class(t0<word>)
public procedure p1;
begin
var b: byte;
var p: procedure := ()->
begin
b += 1;
end;
end;
end;
begin
end.