Browse Source

*** empty log message ***

florian 25 years ago
parent
commit
393f200056
1 changed files with 24 additions and 0 deletions
  1. 24 0
      tests/webtbs/tbug1096.pp

+ 24 - 0
tests/webtbs/tbug1096.pp

@@ -0,0 +1,24 @@
+Program Test;
+{$X-}
+
+Function TestFunc : Boolean;
+var b : Boolean;
+begin
+  TestFunc := True;
+  b := True;
+  if b then
+  begin
+    exit;
+  end;
+end;
+
+begin
+  writeln(3 xor 1);
+  if TestFunc then
+  begin
+    writeln('Yo');
+  end;
+end.
+
+
+