tb0123.pp 223 B

12345678910111213141516
  1. { Old file: tbs0142.pp }
  2. { sizeof(object) is not tp7 compatible when no constructor is used OK 0.99.9 (PM) }
  3. {$PACKRECORDS 1}
  4. type
  5. Time = object
  6. h,m,s:byte;
  7. end;
  8. var OT:Time;
  9. l : longint;
  10. begin
  11. l:=SizeOf(OT);
  12. end.