shadowing of static imports (IDEA-142600)

This commit is contained in:
Anna Kozlova
2016-06-07 10:57:34 +03:00
parent 0b77aa0e5c
commit c83341f731
3 changed files with 89 additions and 5 deletions
@@ -0,0 +1,8 @@
import static foo.Foo.*;
import static foo.Bar.foo;
class Usage {
{
foo(foo);
}
}