IDEA-84428 Basic completion not working for methods from static imports

This commit is contained in:
peter
2012-04-11 17:50:01 +02:00
parent 636ffb3631
commit e49ec61490
4 changed files with 24 additions and 1 deletions
@@ -0,0 +1,11 @@
import static Foo.assertNotNull;
class Foo {
static void assertNotNull() {}
}
class Bar {
{
asnn<caret> lists.get(0).size() > 0);
}
}
@@ -0,0 +1,11 @@
import static Foo.assertNotNull;
class Foo {
static void assertNotNull() {}
}
class Bar {
{
assertNotNull();<caret> lists.get(0).size() > 0);
}
}