fpc/tests/webtbs/tw0895.pp
2002-09-07 15:40:30 +00:00

20 lines
265 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.