01: package test; 02: 03: public class Test { 04: 05: public String field; 06: 07: public void op(int a) { 08: boolean b; 09: new String(field).length; 10: Class c = boolean.class; 11: Boolean.FALSE.booleanValue(); 12: } 13: }