Browse Source

git-svn-id: trunk@3242 -

florian 19 years ago
parent
commit
e8e0d2b6eb
1 changed files with 3 additions and 2 deletions
  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.