home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 412 b | 23 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_MANIFEST_ARRAY6
-
- creation make
-
- feature
-
- make is
- local
- a_any: ARRAY[ANY];
- dr: DOUBLE_REF;
- do
- a_any := <<"3",3,(0.5).to_double>>;
- dr ?= a_any.item(3);
- check
- dr.item = (0.5).to_double;
- end;
- end
-
- end -- TEST_MANIFEST_ARRAY6
-