mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 15:38:26 +02:00
10 lines
508 B
ObjectPascal
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.
|