fpc/bugs/bug0238.pp
1999-04-14 13:42:23 +00:00

35 lines
525 B
ObjectPascal

program test1;
{compiles under TPC - PPC386 gives internal error}
Type str1=string[160];
var
fileof :file of str1;
lol :array[1..8] of str1;
nu,n:integer;
i,tt :str1;
ul :text;
a: str1;
procedure test;
begin
for nu:=1 to 8 do read(fileof,lol[nu]);
writeln('File contents');
for nu:=4 to 8 do writeln(lol[nu]);
end;
begin
assign(fileof,'test.dat');
rewrite(fileof);
for nu:=1 to 8 do write(fileof,a);
close(fileof);
reset(fileof);
test;
close(fileof);
end.