home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 348 b | 19 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- -- From a bug report of Valery Croizier. Thanks.
- --
- class TEST_ARRAY_REAL creation
- make
-
- feature
-
- make is
- local
- a : ARRAY [REAL]
- do
- !! a.make (1, 5)
- end -- make
-
- end -- class TEST_ARRAY_REAL
-