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

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class AUX_FIXED_ARRAY3
  5.  
  6. inherit FIXED_ARRAY[INTEGER]
  7.  
  8. creation test
  9.  
  10. feature 
  11.  
  12.    test is
  13.       do
  14.     make(1);
  15.     check
  16.        item(0) = 0
  17.     end;
  18.       end
  19.  
  20. end -- AUX_FIXED_ARRAY3
  21.