home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / aux_generic5.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  375 b   |  27 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_GENERIC5[E]
  5.  
  6. creation make
  7.  
  8. feature {}
  9.    
  10.    arg: E;
  11.    
  12.    make(e: E) is
  13.       do
  14.      arg := e;
  15.       end;
  16.    
  17. feature 
  18.    
  19.    bizarre is
  20.       local
  21.      tmp: AUX_GENERIC5[E]
  22.       do
  23.      tmp := clone(Current);
  24.       end;
  25.  
  26. end -- AUX_GENERIC5
  27.