mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
20 lines
276 B
Java
20 lines
276 B
Java
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();
|
|
}
|
|
} |