blob: 768c163b662159396a85486bed6ba7157d56ce3e [file] [log] [blame]
class A {
class I {
}
class I1 {
}
public void foo() {
Object innerOne = new I1() {
};
innerOne.toString();
}
public void <caret>bar() {
Object innerTwo = new I() {
};
innerTwo.toString();
}
}