fpc/tests/webtbs/uw26760/uw26760.pp
svenbarth 924f9466f0 * fix for Mantis #26760: apply patch by Ondrej Pokorny to ensure that units referenced by an "in"-clause are recompiled when they have been changed
+ added test (though due to the nature of the bug it needs to be interactive)

git-svn-id: trunk@49587 -
2021-07-09 15:52:00 +00:00

18 lines
135 B
ObjectPascal

unit uw26760;
{$mode objfpc}{$H+}
interface
procedure Test;
implementation
procedure Test;
begin
Writeln('test'); a
end;
end.