tb0121.pp 274 B

123456789101112131415161718
  1. { %fail }
  2. {$mode objfpc}
  3. type
  4. TFPMemberVisibility = (
  5. visAutomated := 'A',
  6. visPublished := 'B',
  7. visPrivate := 'I',
  8. visProtected := 'O',
  9. visPublic := 'U',
  10. visDefault := 'd');
  11. TFPArray = array[TFPMemberVisibility] of String;
  12. begin
  13. end.