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