mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
test++
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user