fpc/tests/webtbs/tw1414.pp
2001-02-21 21:37:39 +00:00

15 lines
176 B
ObjectPascal

uses
dos;
var
i : longint;
begin
{$i-}
chdir('');
i:=ioresult;
if i<>0 then
begin
Writeln('chdir('''') fails wih error ',i);
Halt(i);
end;
end.