Browse Source

*** empty log message ***

florian 26 years ago
parent
commit
cbfcfd4435
2 changed files with 19 additions and 0 deletions
  1. 18 0
      bugs/bug0212.pp
  2. 1 0
      bugs/readme.txt

+ 18 - 0
bugs/bug0212.pp

@@ -0,0 +1,18 @@
+program proptest;
+
+type
+  TMyRec = record
+    Int: Integer;
+    Str: String;
+  end;
+
+  TMyClass = class
+  private
+    FMyRec: TMyRec;
+  public
+    property AnInt: Integer read FMyRec.Int;
+    property AStr: String read FMyRec.Str;
+  end;
+
+begin
+end.

+ 1 - 0
bugs/readme.txt

@@ -284,3 +284,4 @@ bug0201.pp   problem with record var-parameters and assembler
 bug0202.pp   flag results not supported with case
 bug0206.pp   sets with variable ranges doesn't work
 bug0211.pp   a and not a is true !!! (if a:=boolean(5))
+bug0212.pp   problem with properties