mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 03:47:56 +02:00
20 lines
265 B
ObjectPascal
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.
|