tb0178.pp 365 B

1234567891011121314151617181920212223
  1. { Old file: tbs0212.pp }
  2. { problem with properties OK 0.99.11 (PFV) }
  3. program proptest;
  4. {$mode objfpc}
  5. type
  6. TMyRec = record
  7. Int: Integer;
  8. Str: String;
  9. end;
  10. TMyClass = class
  11. private
  12. FMyRec: TMyRec;
  13. public
  14. property AnInt: Integer read FMyRec.Int;
  15. property AStr: String read FMyRec.Str;
  16. end;
  17. begin
  18. end.