fpc/tests/webtbs/tw17604.pp
Jonas Maebe a178ff5172 * fixed evaluation of length('') (the type of an empty string is a chararray
instead of string) (mantis #17604)

git-svn-id: trunk@16128 -
2010-10-11 15:00:20 +00:00

6 lines
71 B
ObjectPascal

program TestLength;
begin
if Length('') <> 0 then
halt(1);
end.