mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
parent
217e9ac5a5
commit
b1a1e6c510
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -18638,6 +18638,7 @@ tests/webtbs/tw38310a.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38310b.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw38310c.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw3833.pp svneol=native#text/plain
|
||||
tests/webtbs/tw38337.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3840.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3841.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3863.pp svneol=native#text/plain
|
||||
|
20
tests/webtbs/tw38337.pp
Normal file
20
tests/webtbs/tw38337.pp
Normal file
@ -0,0 +1,20 @@
|
||||
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.
|
Loading…
Reference in New Issue
Block a user