123456789101112131415161718 |
- { from GPC testsuite (martin3v.pas) }
- {$bitpacking on}
- Unit uprec7;
- Interface
- Type TRecord = packed Record
- a, b, c, d, e, f, g, h, i: Boolean
- end;
- Var ARecord:TRecord = (False, True, True, True, False, True, False, False, True);
- s: Integer;
- Implementation
- Begin
- s := SizeOf (TRecord)
- end.
|