mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-160958 Smart completion should suggest method references of outer class
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Outer {
|
||||
void foo(){}
|
||||
|
||||
class Inner {
|
||||
void bar() {
|
||||
Runnable r = Outer.this::foo;<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class Outer {
|
||||
void foo(){}
|
||||
|
||||
class Inner {
|
||||
void bar() {
|
||||
Runnable r = fo<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user