pascalabcnet/TestSuite/units/u_staticconstr2.pas
Ivan Bondarev 20c227ded1 #2545
2021-10-24 11:45:19 +02:00

18 lines
199 B
ObjectPascal

unit u_staticconstr2;
type
t1<T> = partial class
static i: integer;
end;
t1<T> = partial class
static constructor;
begin
Inc(i);
end;
end;
begin
end.