Explorar o código

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

git-svn-id: trunk@39401 -
svenbarth %!s(int64=7) %!d(string=hai) anos
pai
achega
8df686ed2e
Modificáronse 2 ficheiros con 12 adicións e 0 borrados
  1. 1 0
      .gitattributes
  2. 11 0
      tests/webtbs/tw33898.pp

+ 1 - 0
.gitattributes

@@ -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 - 0
tests/webtbs/tw33898.pp

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