peter 26 years ago
parent
commit
e140f6dd8f
3 changed files with 21 additions and 1 deletions
  1. 9 0
      bugs/bug0284a.pp
  2. 9 0
      bugs/bug0284b.pp
  3. 3 1
      bugs/readme.txt

+ 9 - 0
bugs/bug0284a.pp

@@ -0,0 +1,9 @@
+uses bug0284b;
+{$HINTS ON}
+type
+  o2=object(o1)
+    p : longint;
+  end;
+
+begin
+end.

+ 9 - 0
bugs/bug0284b.pp

@@ -0,0 +1,9 @@
+unit bug0284b;
+interface
+type
+  o1=object
+    p : longint;
+  end;
+
+implementation
+end.

+ 3 - 1
bugs/readme.txt

@@ -322,6 +322,7 @@ Fixed bugs:
   bug0276.pp   Asm, intel reference parsing incompatibility         OK 0.99.13 (PFV)
   bug0276.pp   Asm, intel reference parsing incompatibility         OK 0.99.13 (PFV)
   bug0278.pp   (* in conditional code is handled wrong for tp,delphi OK 0.99.13 (PFV)
   bug0278.pp   (* in conditional code is handled wrong for tp,delphi OK 0.99.13 (PFV)
   bug0280.pp   problem with object finalization.                    OK 0.99.13 (FK)
   bug0280.pp   problem with object finalization.                    OK 0.99.13 (FK)
+  bug0282.pp   long mangledname problem with -Aas                   OK 0.99.13 (PFV)
 
 
 Unproducable bugs:
 Unproducable bugs:
 ------------------
 ------------------
@@ -371,4 +372,5 @@ bug0277.pp   typecasting with const not possible
 bug0279.pp   crash with ansistring and new(^ansistring)
 bug0279.pp   crash with ansistring and new(^ansistring)
 bug0281.pp   dup id checking with property is wrong
 bug0281.pp   dup id checking with property is wrong
 bug0282.pp   long mangledname problem with -Aas
 bug0282.pp   long mangledname problem with -Aas
-bug0283.pp   bug in constant char comparison evaluation
+bug0283.pp   wrong file position with dup id in other unit
+bug0284.pp   bug in constant char comparison evaluation