pascalabcnet/TestSuite/units/u_staticconstr1.pas
Бондарев Иван 7c60910469 bug fix #2212
2020-03-11 19:46:53 +01:00

13 lines
156 B
ObjectPascal

unit u_staticconstr1;
type
cls = class
public static i: integer;
static constructor;
begin
i := 1;
end;
end;
begin
end.