mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 17:59:37 +02:00
19 lines
264 B
ObjectPascal
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. |