tw9039d.pp 189 B

123456789101112
  1. type
  2. ta = array[1..high(ptrint) div 8-1] of byte;
  3. tr = bitpacked record
  4. a: byte;
  5. case byte of
  6. 0: (l: longint);
  7. 1: (e: ta);
  8. end;
  9. begin
  10. writeln(sizeof(ta));
  11. end.