home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / test_fixed_array3.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  329 b   |  19 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_FIXED_ARRAY3
  5.    -- From a bug report of Jean-Marc JEZEQUEL
  6.  
  7. creation make
  8.    
  9. feature 
  10.    
  11.    aux: AUX_FIXED_ARRAY3;
  12.  
  13.    make is
  14.       do
  15.      !!aux.test;
  16.       end;
  17.    
  18. end -- TEST_FIXED_ARRAY3
  19.