

class Increment {

    void g(short m) {
    }

    void m() {
	byte b = 127;	
	g(b++);
    }

}