mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
don't try to complete anonymous outer class method references (IDEA-CR-13773)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class Outer {
|
||||
void foo2(int a){
|
||||
new Object() {
|
||||
void run(int a) {
|
||||
class Inner {
|
||||
void bar() {
|
||||
Runnable r = fo<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void foo() {}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user