fpc/tests/webtbs/tbug840.pp
2000-03-01 00:16:59 +00:00

24 lines
336 B
ObjectPascal

{$mode TP}
program tbug840;
uses tbug840a;
begin
tbug840b.i:=1;
end.
----------------------------- cut here ----------------------------------------
unit ua;
interface
uses ub;
implementation
end.
----------------------------- cut here ----------------------------------------
unit ub;
interface
var i:longint;
implementation
end.