pascalabcnet/TestSuite/libs/l2.pas
Ivan Bondarev cea1d58af6 #3013
l2.dll sources
2024-01-14 12:28:36 +01:00

20 lines
217 B
ObjectPascal

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.