tw22593.pp 285 B

12345678910111213141516171819202122232425
  1. { %norun }
  2. {$ifdef fpc}
  3. {$mode objfpc}
  4. {$endif}
  5. type
  6. tc = class
  7. end;
  8. tcc = class of tc;
  9. tc3 = class;
  10. tc2 = class
  11. constructor create(c: tcc = nil; c3: tc3 = nil);
  12. end;
  13. tc3 = class
  14. end;
  15. constructor tc2.create(c: tcc = nil; c3: tc3 = nil);
  16. begin
  17. end;
  18. begin
  19. end.