mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
create class from usage: enable inside new expr args (IDEA-66193)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Create Class 'Foo'" "true"
|
||||
public class Test {
|
||||
void foo() {
|
||||
new Test(Foo.FIELD);
|
||||
}
|
||||
}
|
||||
|
||||
public class Foo {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Create Class 'Foo'" "true"
|
||||
public class Test {
|
||||
void foo() {
|
||||
new Test(F<caret>oo.FIELD);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user