home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 489 b | 34 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_EVAL18
-
- creation make
-
- feature
-
- make is
- local
- a: ARRAY[BOOLEAN];
- do
- !!a.make(1,2);
- a.put(true,1);
- a.put(false,2);
- check
- a.item(1);
- a.item(2) = false;
- end;
- a := Void;
- check
- a = Void;
- end;
- a := <<true,false>>;
- check
- a.item(1);
- a.item(2) = false;
- end;
-
- end;
-
- end -- TEST_EVAL18
-