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