home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 422 b | 26 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_GENERIC1
- --
- -- From a bug report of : Cyril ADRIAN
- --
-
- creation make
-
- feature
-
- make is
- local
- rb: AUX_GENERIC1[REAL];
- sb: AUX_GENERIC1[STRING]
- do
- !!sb.make("Hello World");
- !!rb.make(Pi.to_real);
-
- rb.bizarre;
- sb.bizarre;
- end;
-
- end -- TEST_GENERIC1
-