浏览代码

*** empty log message ***

florian 23 年之前
父节点
当前提交
2eec6a0897
共有 1 个文件被更改,包括 20 次插入0 次删除
  1. 20 0
      tests/tbs/tb0399.pp

+ 20 - 0
tests/tbs/tb0399.pp

@@ -0,0 +1,20 @@
+procedure error;
+  begin
+     writeln('Problem with octal constants');
+     halt(1);
+  end;
+
+begin
+   if 8<>&10 then
+     error;
+   if 1<>&1 then
+     error;
+   if 64<>&100 then
+     error;
+   if 33<>&41 then
+     error;
+   if 33<>&41 then
+     error;
+   if 12345678<>&57060516 then
+     error;
+end.