mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
uninitialized fields should be offered at least when initializing them
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
class A {
|
||||
final boolean aboo;
|
||||
A() {
|
||||
abo<caret>
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class A {
|
||||
final boolean aboo;
|
||||
A() {
|
||||
aboo<caret>
|
||||
}
|
||||
}
|
||||
+1
@@ -371,6 +371,7 @@ public class NormalCompletionTest extends LightFixtureCompletionTestCase {
|
||||
}
|
||||
|
||||
public void testLocalClassName() throws Throwable { doTest(); }
|
||||
public void testAssigningFieldForTheFirstTime() throws Throwable { doTest(); }
|
||||
|
||||
public void testClassTypeParameters() throws Throwable {
|
||||
configure()
|
||||
|
||||
Reference in New Issue
Block a user