tb0650.pp 200 B

123456789101112131415161718192021
  1. unit tb0650;
  2. {$mode objfpc}{$H+}
  3. interface
  4. type
  5. TTest = record
  6. SomeField: String;
  7. end;
  8. TTestType = type TTest;
  9. TTestClass = class
  10. fField: TTestType;
  11. end;
  12. implementation
  13. end.