home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / test_inherit_array3.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  391 b   |  23 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class TEST_INHERIT_ARRAY3
  5.    -- From a bug report of Jean-Marc JEZEQUEL
  6.  
  7. inherit 
  8.    ARRAY[INTEGER]
  9.       rename make as array_make 
  10.       end;
  11.  
  12. creation make
  13.    
  14. feature 
  15.  
  16.    make is
  17.       do
  18.      array_make(1,0)
  19.      force(5,5)
  20.       end
  21.    
  22. end -- TEST_INHERIT_ARRAY3
  23.