/test/language/unclassified/test_fs1.e
Specman e | 59 lines | 24 code | 6 blank | 29 comment | 1 complexity | 469b94819be8d795bc16ecc339121ba3 MD5 | raw file
1-- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries. 2-- See the Copyright notice at the end of this file. 3-- 4class TEST_FS1 5 -- 6 -- From a bug report of Fridtjof SIEBERT 7 -- 8 9create {} 10 make 11 12feature {ANY} 13 ---- Original: 14 -- array: ARRAY[expanded AUX_FS1]; 15 array: ARRAY[AUX_FS1] 16 17 make 18 local 19 aux: AUX_FS1 20 do 21 ---- Original: 22 -- aux: expanded AUX_FS1; 23 create array.make(1, 2) 24 assert(array.item(1) = aux) 25 end 26 27 assert (bool: BOOLEAN) 28 do 29 cpt := cpt + 1 30 if not bool then 31 std_output.put_string("TEST_FS1: ERROR Test # ") 32 std_output.put_integer(cpt) 33 std_output.put_string("%N") 34 else 35 -- std_output.put_string("Yes%N"); 36 end 37 end 38 39 cpt: INTEGER 40 41end -- class TEST_FS1 42-- 43-- ------------------------------------------------------------------------------------------------------------------------------ 44-- Copyright notice below. Please read. 45-- 46-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 47-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 48-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 49-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 50-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 51-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 52-- 53-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 54-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 55-- 56-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 57-- 58-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 59-- ------------------------------------------------------------------------------------------------------------------------------