blob: 8d257b54c4db76e6a7a7c5f952c6a7ef242d103a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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.
|