mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 01:08:07 +02:00
16 lines
136 B
ObjectPascal
16 lines
136 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode tp}
|
|
|
|
type
|
|
tr = bitpacked record
|
|
a,b: 0..7;
|
|
end;
|
|
|
|
var
|
|
r: tr;
|
|
begin
|
|
for r.a := 0 to 4 do
|
|
writeln;
|
|
end.
|