carl 27 years ago
parent
commit
627e79785c
2 changed files with 27 additions and 0 deletions
  1. 5 0
      bugs/bug0157.pp
  2. 22 0
      bugs/bug0159.pp

+ 5 - 0
bugs/bug0157.pp

@@ -0,0 +1,5 @@
+program write_it;
+var x:real;
+begin
+write(x:5.2);
+end.

+ 22 - 0
bugs/bug0159.pp

@@ -0,0 +1,22 @@
+Type TParent = Object
+       Procedure SomeProc;
+       end;
+
+     TChild = Object(TParent)
+       Procedure SomeProc; virtual;
+       end;
+
+
+       Procedure TParent.someproc;
+       Begin
+       end;
+
+
+      procedure TChild.Someproc;
+      Begin
+      end;
+
+
+
+Begin
+end.