home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 391 b | 23 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_INHERIT_ARRAY3
- -- From a bug report of Jean-Marc JEZEQUEL
-
- inherit
- ARRAY[INTEGER]
- rename make as array_make
- end;
-
- creation make
-
- feature
-
- make is
- do
- array_make(1,0)
- force(5,5)
- end
-
- end -- TEST_INHERIT_ARRAY3
-