01: package experiments.instruction; 02: 03: /** 04: * Class used for testing. 05: * @author Tin Pavlinic 06: * @version $Revision: 414 $ 07: */ 08: public class INeg { 09: public int method() { 10: int x = 50; 11: int y = -x; 12: return y; 13: } 14: }