E2050 interface 部には実行文は記述できません (Delphi)

提供: RAD Studio
移動先: 案内検索

エラーと警告のメッセージ(Delphi) への移動

ユニットのインターフェース部には文でなく宣言だけが入ります。

手続きの本体を実現部へ移動してください。


unit Produce;

interface

procedure MyProc;
begin                (*<-- ここでエラーメッセージ*)
end;

implementation

begin
end.

{ うっかりして MyProc の本体をインターフェース部に置いた }


unit Solve;

interface

procedure MyProc;

implementation

procedure MyProc;
begin
end;

begin
end.

{ 本体を実現部へ移動すればうまく行く }