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