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