add single static import: ensure not available when conflict(IDEA-174983)

when methods (> 1) with same name exist in the containing class
This commit is contained in:
Anna Kozlova
2017-06-26 12:37:13 +03:00
parent 7e3e7e798f
commit ed4a26a905
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import foo.*;
class MyTest {
{
Assert.assert<caret>True(false);
}
static void assertTrue() {}
static void assertTrue(String message, boolean flag) {}
}