public int ushr(int arg0,int arg1) ;
public long ushr(long arg0,int arg1) ;
public int ushr(short arg0,int arg1) ;
}
public void test0() throws Exception {
USHRTest obj = makeObject(USHRTest.class,new USHRExpr(ARG0,ARG1,null)) ;
assertEquals(obj.ushr(3, -3),3 >>> -3) ;
assertEquals(obj.ushr(3267365, 3),3267365 >>> 3) ;
assertEquals(obj.ushr(3L, -3),3L >>> -3) ;
assertEquals(obj.ushr(3267365L, 3),3267365L >>> 3) ;
assertEquals(obj.ushr((short)3, -3),(short)3 >>> -3) ;