mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 10:39:29 +02:00
15 lines
357 B
ObjectPascal
15 lines
357 B
ObjectPascal
{ Old file: tbf0311.pp }
|
|
{ No dup id checking in variant records OK 0.99.15 (FK) }
|
|
|
|
type
|
|
tsplitextended = record
|
|
case byte of
|
|
0: (a: array[0..9] of byte);
|
|
{ the following "a" should give a duplicate identifier error }
|
|
1: (a: array[0..4] of word);
|
|
2: (a: array[0..1] of cardinal; w: word);
|
|
end;
|
|
|
|
begin
|
|
end.
|