Browse Source

* packenum bug

peter 25 years ago
parent
commit
3503b88e37
1 changed files with 20 additions and 0 deletions
  1. 20 0
      tests/tbs/tbs0340.pp

+ 20 - 0
tests/tbs/tbs0340.pp

@@ -0,0 +1,20 @@
+{$packenum 1}
+type
+  t = (a,b,c,d,e);
+
+const arr:  array[0..4] of t = (a,b,c,d,e);
+
+var
+  x: byte;
+
+begin
+  x := 0;
+  writeln(ord(arr[x]),' ',ord(arr[x+1]),' ',ord(arr[x+2]),' ',ord(arr[x+3]),' ',ord(arr[x+4]));
+  for x:=0 to 4 do
+   if ord(arr[x])<>x then
+    begin
+      writeln('error in {$packenum 1}');
+      halt(1);
+    end;
+end.
+