fpc/tests/webtbs/tw37095d/uw37095.pp
Jonas Maebe a88eee4080 * fixed unitdir directive for relative paths in case the current module's
path is not set, broken by r43312 (mantis #37095)

git-svn-id: trunk@45410 -
2020-05-17 21:27:00 +00:00

11 lines
143 B
ObjectPascal

unit uw37095;
interface
procedure UnitHello;
implementation
procedure UnitHello;
begin
writeln('"Hello, unit."');
end;
begin
end.