pascalabcnet/TestSuite/namespaces/nspartial2.pas

12 lines
146 B
ObjectPascal
Raw Permalink Normal View History

2019-10-04 20:28:13 +03:00
namespace nspartial;
type
T = partial class
public i: integer;
public procedure Test2;
begin
Inc(i);
end;
end;
end.