+ added after comment on fpc-devel by <pavel@insect.mail.iephb.ru>

This commit is contained in:
Jonas Maebe 2002-01-31 14:36:35 +00:00
parent 6165a24c43
commit e56fafb7d7

13
tests/tbs/tb0392.pp Normal file
View File

@ -0,0 +1,13 @@
var
l: longint;
a: array[0..1] of char;
begin
l := 50;
str(l,a);
if a <> '50' then
begin
writeln('error');
halt(1);
end;
end.