pascalabcnet/TestSuite/libs/l2.pas

20 lines
217 B
ObjectPascal
Raw Permalink Normal View History

2024-01-14 14:28:36 +03:00
library l2;
type
t1 = class
public function m1 := 0;
end;
t2 = class(t1)
public static i: integer;
public static procedure m1;
begin
i := 1;
end;
end;
end.