浏览代码

* New test for !40643

J. Gareth "Curious Kit" Moreton 1 年之前
父节点
当前提交
afd63ef0ce
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      tests/webtbs/tw40643.pp

+ 11 - 0
tests/webtbs/tw40643.pp

@@ -0,0 +1,11 @@
+{ %OPT=-O1 }
+program tw40643;
+var
+  a: integer = 1;
+  b: integer = 1;
+begin
+  if (a < 1) or ((a = 1) and (a = b)) then Exit;
+
+  WriteLn('Fail');
+  Halt(1);
+end.