mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
enable introduce before void statement but with non-void qualifier (IDEA-76726 )
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
void foo() {
|
||||
Object c = getObject();
|
||||
c.notify();
|
||||
}
|
||||
|
||||
Object getObject() {return null;}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
void foo() {
|
||||
<caret>getObject().notify();
|
||||
}
|
||||
|
||||
Object getObject() {return null;}
|
||||
}
|
||||
Reference in New Issue
Block a user