fpc/tests/webtbs/tw15592.pp
Jonas Maebe 674cdaf3fc * handle fields with the same name as a type also correctly in case of
nested records (mantis #15592)

git-svn-id: trunk@14910 -
2010-02-13 20:51:19 +00:00

18 lines
256 B
ObjectPascal

{ %norun }
program project1;
TYPE
TRTime = Record
rtDay : Integer;
end;
TTimeRange = Record
trFlags : Integer;
trTime : TRTime;
case trType : Integer of
0 : (trTime2 : TRTime);
1 : (trMinutes : Integer);
end;
begin
end.