fpc/tests/test/tprec7.pp
Jonas Maebe 1f42ee201b + support for bitpacked records, except for:
* rtti
    * typed constants

git-svn-id: trunk@4489 -
2006-08-23 15:44:13 +00:00

21 lines
344 B
ObjectPascal

Program PackedAssignTest;
Uses uprec7;
Var BRecord:TRecord;
begin
if SizeOf (BRecord) <> s then
begin
WriteLn ('failed 1');
Halt
end;
BRecord := ARecord;
with BRecord do
if (a or not b or not c or not d or e or not f or g or h or not i)then
begin
WriteLn ('failed 2');
Halt(1);
end;
WriteLn ('OK')
end.