fpc/tests/webtbs/tw0895.pp
2000-12-03 21:50:07 +00:00

19 lines
264 B
ObjectPascal

program bug;
begin
{$I-}
mkdir('test895');
InOutRes:=0;
{$I+}
writeln('This is a test');
{$I-}
mkdir('test895');
InOutRes:=0;
{$I+}
writeln('This is a test');
{$I-}
rmdir('test895');
InOutRes:=0;
{$I+}
writeln('This is a test');
end.