pascalabcnet/TestSuite/units/u_staticconstr1.pas

13 lines
156 B
ObjectPascal
Raw Permalink Normal View History

2020-03-11 21:46:53 +03:00
unit u_staticconstr1;
type
cls = class
public static i: integer;
static constructor;
begin
i := 1;
end;
end;
begin
end.