From 8df686ed2ec3520552f02e509c17d4580e4eecb6 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Fri, 6 Jul 2018 15:57:23 +0000 Subject: [PATCH] * Mantis #33898 is fixed by the fix for String type helpers as well git-svn-id: trunk@39401 - --- .gitattributes | 1 + tests/webtbs/tw33898.pp | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/webtbs/tw33898.pp diff --git a/.gitattributes b/.gitattributes index 71fbb50138..98245f6cd1 100644 --- a/.gitattributes +++ b/.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 diff --git a/tests/webtbs/tw33898.pp b/tests/webtbs/tw33898.pp new file mode 100644 index 0000000000..98d7b000b3 --- /dev/null +++ b/tests/webtbs/tw33898.pp @@ -0,0 +1,11 @@ +{ %NORUN } + +program tw33898; + +{$mode delphi} + +uses sysutils; + +begin + writeln(string.join('&', ['ab', 'cd'])); +end.