mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 08:08:13 +02:00
14 lines
114 B
ObjectPascal
14 lines
114 B
ObjectPascal
{ %fail }
|
|
|
|
type
|
|
tr = bitpacked record
|
|
a,b: 0..7;
|
|
end;
|
|
|
|
var
|
|
r: tr;
|
|
p: pointer;
|
|
begin
|
|
p := @r.b;
|
|
end.
|