home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 366 b | 24 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_ARRAY4
- --
- -- From a bug report of Cyril ADRIAN
- --
- creation make
-
- feature
-
- make is
- do
- use(<<"titi">>);
- use(<<1>>);
- end;
-
- use(t: ARRAY[COMPARABLE]) is
- do
- t.put(t.last,1)
- end;
-
- end -- TEST_ARRAY4
-