tb0296.pp 410 B

1234567891011121314151617181920
  1. { Old file: tbs0355.pp }
  2. { }
  3. {MvdV; published in core.
  4. Element that is in the type zz too is not recognised as such.
  5. }
  6. type xx=(notinsubset1,insubset1,insubset2,notinsubset2);
  7. zz=insubset1..insubset2;
  8. ll=record
  9. yy:zz;
  10. end;
  11. const oo : array[0..1] of ll = (
  12. (yy:insubset1),
  13. (yy:insubset2));
  14. begin
  15. end.