home *** CD-ROM | disk | FTP | other *** search
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_ADDRESS_OF1
- --
- -- From a bug report of Masato MOGAKI
- --
- creation
- make
-
- feature
-
- a_string: STRING;
-
- make is
- do
- a_string := "TEST";
- if not c_routine($a_string) then
- std_error.put_string("ERROR TEST_ADDRESS_OF1%N");
- end;
- end
-
- c_routine(p: POINTER): BOOLEAN is
- do
- c_inline_c("R=(((void *)&(C->_a_string))==a1);");
- end
-
- end
-