tb0060.pp 367 B

123456789101112131415
  1. { %FAIL }
  2. { Old file: tbf0311.pp }
  3. { No dup id checking in variant records OK 0.99.15 (FK) }
  4. type
  5. tsplitextended = record
  6. case byte of
  7. 0: (a: array[0..9] of byte);
  8. { the following "a" should give a duplicate identifier error }
  9. 1: (a: array[0..4] of word);
  10. 2: (a: array[0..1] of cardinal; w: word);
  11. end;
  12. begin
  13. end.