mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
method refs: move method inside class with method ref usage (EA-57734 - IOE: PsiReferenceExpressionBase.setQualifierExpression)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Outer {
|
||||
static void foo() {}
|
||||
|
||||
static class Inner {
|
||||
}
|
||||
|
||||
{
|
||||
Runnable r = Outer::foo;
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Outer {
|
||||
static class Inner {
|
||||
static void foo() {}
|
||||
}
|
||||
|
||||
{
|
||||
Runnable r = Inner::foo;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user