Selaa lähdekoodia

*** empty log message ***

florian 27 vuotta sitten
vanhempi
commit
cbfcfd4435
2 muutettua tiedostoa jossa 19 lisäystä ja 0 poistoa
  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
 bug0202.pp   flag results not supported with case
 bug0206.pp   sets with variable ranges doesn't work
 bug0206.pp   sets with variable ranges doesn't work
 bug0211.pp   a and not a is true !!! (if a:=boolean(5))
 bug0211.pp   a and not a is true !!! (if a:=boolean(5))
+bug0212.pp   problem with properties