浏览代码

git-svn-id: trunk@3242 -

florian 19 年之前
父节点
当前提交
e8e0d2b6eb
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      tests/test/texception2.pp

+ 3 - 2
tests/test/texception2.pp

@@ -20,9 +20,10 @@ var
 begin
    for i:=1 to 20 do
      try
-        d;
+       d;
      except
        on exception do
-         ;
+        ;
      end;
+   writeln('ok');
 end.