tw18767b.pp 234 B

12345678910111213141516171819
  1. { %norun}
  2. program tw18767b;
  3. {$mode delphi}{$H+}
  4. type
  5. TFoo = class
  6. strict private
  7. type
  8. TBar = (one, two);
  9. var
  10. x: array of record
  11. y: array[TBar] of integer;
  12. end;
  13. end;
  14. begin
  15. TFoo.Create;
  16. end.