fpc/tests/webtbs/tw7567.pp
Jonas Maebe b386335f27 * treat zero-based arrays of char also as pchar's when reading
(i.e., always zero-terminate) (bug 7567)

git-svn-id: trunk@4826 -
2006-10-08 09:22:30 +00:00

21 lines
348 B
ObjectPascal

var
a: array[0..9] of char;
b: array[1..10] of char;
t: text;
begin
assign(t,'tw7567.txt');
rewrite(t);
writeln(t,'0123456789abcdef');
writeln(t,'0123456789abcdef');
close(t);
reset(t);
readln(t,a);
readln(t,b);
close(t);
erase(t);
if (a <> '012345678') then
halt(1);
if (b <> '0123456789') then
halt(2);
end.