* Mantis #33898 is fixed by the fix for String type helpers as well

git-svn-id: trunk@39401 -
This commit is contained in:
svenbarth 2018-07-06 15:57:23 +00:00
parent ec374c196e
commit 8df686ed2e
2 changed files with 12 additions and 0 deletions

1
.gitattributes vendored
View File

@ -16200,6 +16200,7 @@ tests/webtbs/tw33818.pp svneol=native#text/pascal
tests/webtbs/tw33839a.pp -text svneol=native#text/pascal
tests/webtbs/tw33839b.pp -text svneol=native#text/pascal
tests/webtbs/tw33840.pp -text svneol=native#text/pascal
tests/webtbs/tw33898.pp -text svneol=native#text/pascal
tests/webtbs/tw3402.pp svneol=native#text/plain
tests/webtbs/tw3411.pp svneol=native#text/plain
tests/webtbs/tw3418.pp svneol=native#text/plain

11
tests/webtbs/tw33898.pp Normal file
View File

@ -0,0 +1,11 @@
{ %NORUN }
program tw33898;
{$mode delphi}
uses sysutils;
begin
writeln(string.join('&', ['ab', 'cd']));
end.