fpc/tests/webtbf/tw26704.pp
Jonas Maebe f6f304e0ca * check for duplicate identifiers when inserting union symtables into the
parent record symtable (mantis #26704)

git-svn-id: trunk@28820 -
2014-10-14 20:30:14 +00:00

12 lines
113 B
ObjectPascal

{ %fail }
type
TTest = record
Value: Byte;
case Integer of
0: (Value: Word);
end;
begin
end.