* fixed duplicate field names in variant record parts

git-svn-id: trunk@28822 -
This commit is contained in:
Jonas Maebe 2014-10-15 10:08:43 +00:00
parent fb18eac0f3
commit 5b39b20a3d
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ type
tr = packed record
l: longint;
case byte of
0: (l: longint);
0: (x: longint);
1: (e: ta);
end;

View File

@ -10,7 +10,7 @@ Type
End; { Record }
TSomeRecord = Packed Record
Case A : Cardinal OF
Case x : Cardinal OF
0 : (A : TSomeRec1);
End; { Record }