Browse Source

+ fixed bug 92 (var -> const)
+ bug #121
* removed uppercase names

peter 27 years ago
parent
commit
aae0d9d4cf
5 changed files with 11 additions and 5 deletions
  1. 0 0
      bugs/bug0052.pp
  2. 0 0
      bugs/bug0083.pp
  3. 3 5
      bugs/bug0092.pp
  4. 7 0
      bugs/bug0121.pp
  5. 1 0
      bugs/readme.txt

+ 0 - 0
bugs/BUG0052.PP → bugs/bug0052.pp


+ 0 - 0
bugs/BUG0083.PP → bugs/bug0083.pp


+ 3 - 5
bugs/bug0092.pp

@@ -1,11 +1,9 @@
-program bug;
-
 {The unfixable bug. Maybe we get an idea when we keep looking at it.
-
  Daniel Mantione 5 februari 1998.}
 
-var	a:1..4=2;		{Crash 1.}
-   	b:set of 1..4=[2,3];	{Also crashes, but is the same bug.}
+const
+        a:1..4=2;               {Crash 1.}
+        b:set of 1..4=[2,3];    {Also crashes, but is the same bug.}
 
 begin
 end.

+ 7 - 0
bugs/bug0121.pp

@@ -0,0 +1,7 @@
+var
+  c : cardinal;
+  b : byte;
+begin
+  b:=c;
+end.
+

+ 1 - 0
bugs/readme.txt

@@ -166,3 +166,4 @@ bug0117.pp   internalerror 17 (and why is there an automatic float
 bug0118.pp   Procedural vars cannot be assigned nil ?
 bug0119.pp   problem with methods
 bug0120.pp   inc/dec(enumeration) doesn't work
+bug0121.pp   cardinal -> byte conversion not work (and crashes)