fpc/tests/webtbs/tw38337.pp
Jonas Maebe b1a1e6c510 + test for mantis #38337, already fixed
git-svn-id: trunk@48127 -
2021-01-10 14:09:22 +00:00

21 lines
255 B
ObjectPascal

program fs;
{$mode objfpc}{$H+}
function UTF8Length(const s: string): PtrInt; inline;
begin
Result:=9;
end;
var
v1: string;
s: shortstring;
i: Integer;
begin
v1 := '123456789';
s := v1;
for i := 1 to UTF8Length(s)-8 do begin
end;
end.