14 lines
115 B
ObjectPascal
14 lines
115 B
ObjectPascal
|
|
unit test_debug_unit;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
function f:integer;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
function f:integer;
|
||
|
|
begin
|
||
|
|
f:=1;
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|