test that stats is remembered for global static method completion variants

This commit is contained in:
peter
2014-01-29 19:40:24 +01:00
parent c314c53745
commit 589208ff99
4 changed files with 42 additions and 0 deletions
@@ -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) {}
}
@@ -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) {}
}