home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 411 b | 27 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_INTEGER_REF2
- --
- -- From a bug report of Thierry DE CARVALHO
- --
-
- creation make
-
- feature
-
- make is
- local
- a : ANY;
- i : INTEGER_REF;
- do
- !INTEGER_REF!a.make(1);
- i ?= a;
- if i.item /= 1 then
- check
- false
- end;
- end;
- end;
- end
-