blob: 0c2ca77039dfaa24455cb11752079bd5aa9ee6a9 [file] [log] [blame]
class C {
public void test() {
Object i = new Object() {
private int myA;
{
process("a");
}
public void process(String s) {
myA = s.length();
}
};
}
}