@@ -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
+ if 64<>&100 then
+ if 33<>&41 then
+ if 12345678<>&57060516 then
+end.