11 lines
88 B
ObjectPascal
11 lines
88 B
ObjectPascal
type IInt = interface
|
|
procedure Test;
|
|
end;
|
|
|
|
procedure IInt.Test;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
|
|
end. |