fixed usage type for static fields and methods (IDEA-143229)

This commit is contained in:
nik
2015-07-29 12:13:08 +03:00
parent 33e3f1727d
commit ef1f9f2d46
6 changed files with 80 additions and 1 deletions
@@ -0,0 +1,5 @@
public class StaticMethodCall {
void m() {
int i = <caret>Foo.STATIC_FIELD;
}
}