浏览代码

no message

florian 20 年之前
父节点
当前提交
c55870ebb5
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      tests/webtbs/tw3697.pp

+ 16 - 0
tests/webtbs/tw3697.pp

@@ -0,0 +1,16 @@
+{ Source provided for Free Pascal Bug Report 3697 }
+{ Submitted by "Matthias Hryniszak" on  2005-02-26 }
+{ e-mail: [email protected] }
+uses
+  SysUtils;
+
+var
+  S: WideString;
+
+begin
+  S := WideFormat('Test %s', ['string']);
+  if s<>'Test string' then
+    halt(1);
+  
+  writeln('ok');
+end.