tb0266a.pp 236 B

123456789101112131415161718192021222324
  1. { %FAIL }
  2. unit tb0266a;
  3. {$mode objfpc}{$H+}
  4. interface
  5. type
  6. TTest1 = class
  7. fTest: String;
  8. end;
  9. TTest2 = class
  10. private
  11. fTest: TTest1;
  12. public
  13. property Test: String read fTest.fTest;
  14. end;
  15. implementation
  16. end.