Browse Source

+ 0613 from web form

pierre 26 years ago
parent
commit
372ec1abee
2 changed files with 12 additions and 0 deletions
  1. 11 0
      bugs/bug0296.pp
  2. 1 0
      bugs/readme.txt

+ 11 - 0
bugs/bug0296.pp

@@ -0,0 +1,11 @@
+
+function test : string;
+
+  begin
+    test:='This should not be printed';
+    exit('this should be printed');
+  end;
+
+begin
+  writeln(test);
+end.

+ 1 - 0
bugs/readme.txt

@@ -385,3 +385,4 @@ bug0263.pp   export directive is not necessary in delphi anymore
 bug0265.pp   nested proc with for-counter in other lex level
 bug0281.pp   dup id checking with property is wrong
 bug0293.pp   no error with variable name = type name
+bug0296.pp   exit(string) does not work (web form bug 613)