public int shl(int arg0,int arg1) ;
public long shl(long arg0,int arg1) ;
public int shl(short arg0,int arg1) ;
}
public void test0() throws Exception {
SHLTest obj = makeObject(SHLTest.class,new SHLExpr(ARG0,ARG1,null)) ;
assertEquals(obj.shl(3, 3),3 << 3) ;
assertEquals(obj.shl(3267365, -3),3267365 << -3) ;
assertEquals(obj.shl(3L, 3),3L << 3) ;
assertEquals(obj.shl(3267365L, -3),3267365L << -3) ;
assertEquals(obj.shl((short)3, 3),(short)3 << 3) ;