fpc/tests/tbs/tb0568.pp
florian 5b1e713e5b * fixed tests
git-svn-id: trunk@14794 -
2010-01-24 15:00:49 +00:00

10 lines
508 B
ObjectPascal

{ this is allowed now, even in $H- mode because '....' is handled as array in this case (FK) }
var
i : integer;
begin
{ String constants can't exceed 255 chars }
i:=length('12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890');
if i<>290 then
halt(1);
end.