summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/tbs/tb0123.pp
blob: 4b2d9a184b1eba573498827b4c08e7a79a49edab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ Old file: tbs0142.pp }
{ sizeof(object) is not tp7 compatible when no constructor is used OK 0.99.9 (PM) }


{$PACKRECORDS 1}

type
Time = object
  h,m,s:byte;
end;

var OT:Time;
 l : longint;
begin
  l:=SizeOf(OT);
end.