peter %!s(int64=21) %!d(string=hai) anos
pai
achega
1eea332449
Modificáronse 1 ficheiros con 18 adicións e 0 borrados
  1. 18 0
      tests/webtbs/tw3063.pp

+ 18 - 0
tests/webtbs/tw3063.pp

@@ -0,0 +1,18 @@
+{ Source provided for Free Pascal Bug Report 3063 }
+{ Submitted by "Werner Bochtler" on  2004-04-23 }
+{ e-mail: [email protected] }
+program scope;
+uses classes;
+
+{$mode delphi}
+
+var
+  error: string;
+begin
+  with TStringList.Create do try
+    error := 'some text';
+    WriteLn( error );
+  finally
+    free;
+  end;
+end.