mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +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.
|