pascalabcnet/TestSuite/Lambda_double_capture_b-6.pas
Mikhalkovich Stanislav 717b73cb60 fix #2007
2019-06-21 09:36:54 +03:00

16 lines
232 B
ObjectPascal

type
t0<T> = class end;
t1<T> = class(t0<T>)
public procedure p1();
begin
var b: T;
var p: procedure := ()->
begin
var b1 := b;
var b2 := b;
end;
end;
end;
begin
end.