tw39310.pp 194 B

123456789101112131415161718192021
  1. { %NORUN }
  2. {$MODESWITCH ADVANCEDRECORDS}
  3. Program tw39310;
  4. Type
  5. Rec0 = record
  6. end;
  7. Rec1 = record
  8. r:Rec0;
  9. Procedure Proc;
  10. end;
  11. Procedure Rec1.Proc;
  12. begin
  13. end;
  14. Begin
  15. End.