}
public static interface ShortGetFieldTest {
public short meth(FieldTestClass arg0) ;
}
public void test2() throws Exception {
ShortGetFieldTest obj = makeObject(ShortGetFieldTest.class,new FieldVarExpr(ARG0,"short_field",null)) ;
FieldTestClass o2 = new FieldTestClass() ;
o2.short_field = (short)45 ;
assertEquals(obj.meth(o2),(short)45) ;
}