fpc/tests/webtbf/tw7438.pp
Jonas Maebe 3bb41dcf9a * fixed writing "packed" status of bitpacked records to ppu files.
Not sure how it ever worked, nor how exactly symtable ppu entries
    work -- but it's now stored with the recorddef (which also means
    that bitpacking is disabled currently for objects and classes,
    since they are based on tabstractrecorddef rather than trecorddef)

git-svn-id: trunk@4679 -
2006-09-21 20:39:36 +00:00

18 lines
145 B
ObjectPascal

{ %norun }
{$mode macpas}
unit tw7438;
interface
type
tr = bitpacked record
l1: longint;
l2: longint;
end;
implementation
end.