/test/language/simplify/inlining/test_inlining8.e
Specman e | 58 lines | 29 code | 8 blank | 21 comment | 1 complexity | 32cf9023acb3abdd66296d40a4b71fa1 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_INLINING8 5 6create {} 7 make 8 9feature {ANY} 10 a1: like Current 11 12 make 13 do 14 a1 := Current 15 if get_a4 /= Current then 16 std_output.put_string("TEST_INLINING8: ERROR Test #1%N") 17 end 18 end 19 20 get_a1: like Current 21 do 22 Result := a1 23 end 24 25 get_a2: like Current 26 do 27 Result := get_a1 28 end 29 30 get_a3: like Current 31 do 32 Result := get_a2 33 end 34 35 get_a4: like Current 36 do 37 Result := get_a3 38 end 39 40end -- class TEST_INLINING8 41-- 42-- ------------------------------------------------------------------------------------------------------------------------------ 43-- Copyright notice below. Please read. 44-- 45-- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, 46-- as published by the Free Software Foundation; either version 2, or (at your option) any later version. 47-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty 48-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have 49-- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free 50-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. 51-- 52-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE 53-- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE 54-- 55-- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN 56-- 57-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr 58-- ------------------------------------------------------------------------------------------------------------------------------