12 lines
146 B
ObjectPascal
12 lines
146 B
ObjectPascal
|
|
namespace nspartial;
|
||
|
|
|
||
|
|
type
|
||
|
|
T = partial class
|
||
|
|
public i: integer;
|
||
|
|
public procedure Test2;
|
||
|
|
begin
|
||
|
|
Inc(i);
|
||
|
|
end;
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|