mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
test that stats is remembered for global static method completion variants
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
public class Foo {
|
||||
|
||||
void foo() {
|
||||
newLi<caret>
|
||||
}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
static void newLinkedSet0() {}
|
||||
static void newLinkedSet1(int a) {}
|
||||
static void newLinkedSet2(int a, int b) {}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import java.util.Set;
|
||||
|
||||
public class Foo {
|
||||
|
||||
void foo() {
|
||||
Set s = newLi<caret>
|
||||
}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
static Set newLinkedSet0() {}
|
||||
static Set newLinkedSet1(int a) {}
|
||||
static Set newLinkedSet2(int a, int b) {}
|
||||
}
|
||||
Reference in New Issue
Block a user