7 lines
65 B
ObjectPascal
7 lines
65 B
ObjectPascal
type IInt = interface
|
|
procedure Test;
|
|
end;
|
|
|
|
begin
|
|
IInt.Test;
|
|
end. |